Removes login popup that is shown after scroll
// ==UserScript==
// @name Remove Instagram login popup
// @namespace http://tampermonkey.net/
// @version 0.1
// @description Removes login popup that is shown after scroll
// @author Can Kurt
// @match *://www.instagram.com/*
// @license MIT
// ==/UserScript==
(function() {
'use strict';
setInterval(() => {
function removeLastElementsUntilNonDiv() {
const lastElement = document.body.lastElementChild;
if (lastElement && lastElement.tagName === 'DIV') {
if(lastElement.id !== "has-finished-comet-page") {
lastElement.remove();
removeLastElementsUntilNonDiv();
}
}
}
removeLastElementsUntilNonDiv();
}, 100);
})();