RealPython Registartion Pop-up Bypass

Remove registration / login pop-up on realpython.com.

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

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

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==UserScript==
// @name        RealPython Registartion Pop-up Bypass
// @description Remove registration / login pop-up on realpython.com.
// @namespace   https://github.com/MichaelYochpaz/User-Scripts
// @homepageURL https://github.com/MichaelYochpaz/User-Scripts
// @supportURL  https://github.com/MichaelYochpaz/User-Scripts/issues
// @icon        https://cdn.realpython.com/static/favicon.ico
// @author      Michael Yochpaz
// @license     MIT
// @version     1.0.4
// @include     *://realpython.com/*
// @grant       GM_addStyle
// @run-at      document-idle
// ==/UserScript==

document.getElementsByClassName("modal-backdrop")[0].remove(); // Remove Backdrop (black background)
GM_addStyle (`.modal {display: none !important}`); // Remove Modal (registration pop-up)
GM_addStyle (`.modal-open {overflow: scroll !important}`); // Restore Scrolling