Remove Instagram Sign Up

Hide instagram's singup pop up and layover

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

Advertisement:

// ==UserScript==
// @name         Remove Instagram Sign Up
// @namespace    Violentmonkey Scripts
// @match        *://*.instagram.com/*
// @grant        none
// @version      1.1
// @description  Hide instagram's singup pop up and layover
// @author       kesto
// ==/UserScript==
const hideFooterBanner = () => {
    console.log('be forgotten')
    const banner = document.getElementsByClassName('N9d2H');
    banner[0].setAttribute('style', 'display: none;');
}

const hideInstaLightbox = () => {
    console.log('boom boom!')
    const lightbox = document.getElementsByClassName('g6RW6');
    const loginText = document.getElementsByClassName('_7UhW9');
    const layover = document.getElementsByClassName('RnEpo');
    const elements = [lightbox, loginText, layover];
    if (lightbox.length) {
        elements.forEach(el => el[0].setAttribute('style', 'display: none;'));
        document.body.style.overflow = 'scroll';
    }
    loop();
}

const loop = () => {
    window.setInterval(() => {
        hideInstaLightbox();
    }, 2000);
}


window.setTimeout(() =>{
    hideFooterBanner();
    loop();
}, 1000);