Remove twitter login blocker

Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.

Cos'è Remove twitter login blocker?

Remove twitter login blocker è un'estensione di Chrome sviluppata da BeniNovakDev, e la sua funzione principale è "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Remove twitter login blocker

Scarica i file di estensione Remove twitter login blocker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Enables browsing twitter without account or being logged in --- a "feature" that was introduced sometime in the summer of 2021. It does this by hiding the annoying "Log in / Sign up" prompt when it pops up. When it hides the popup it will also hide the blue banner on the bottom of the screen, which is there to also convince you to login, and the "enable cookies" prompt. Made for people who only occasionally use twitter to check on a specific account for updates and the like.

This extension might not work properly if used when logged in.

Icon for the extension provided by SVG Repo - - https://www.svgrepo.com/                    

Informazioni di Base sull'Estensione

Nome Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
URL Ufficiale https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
Descrizione Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
Dimensione del File 23.39 KB
Conteggio Installazioni 2,414
Versione Corrente 1.0
Ultimo Aggiornamento 2022-03-30
Data di Pubblicazione 2022-03-28
Valutazione 3.36/5 Totale 11 Valutazioni
Sviluppatore BeniNovakDev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Remove twitter login blocker",
    "version": "1.0",
    "description": "Removes the annoying Twitter log in\/sign up blocker, which prevents the use of Twitter without an account.",
    "icons": {
        "16": "icon-small.png",
        "48": "icon-medium.png",
        "96": "icon-big.png",
        "128": "icon-default.png"
    },
    "author": "Benjamin Luka Novak",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}