Remove twitter login blocker

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

Co je Remove twitter login blocker?

Remove twitter login blocker je rozšíření Chrome vyvinuté BeniNovakDev, a jeho hlavní funkcí je „Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření Remove twitter login blocker

Stáhněte si soubory rozšíření Remove twitter login blocker ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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/                    

Základní Informace o Rozšíření

Název Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
Oficiální URL https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
Popis Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
Velikost souboru 23.39 KB
Počet instalací 2,414
Aktuální Verze 1.0
Poslední Aktualizace 2022-03-30
Datum Vydání 2022-03-28
Hodnocení 3.36/5 Celkem 11 Hodnocení
Vývojář BeniNovakDev
E-mail [email protected]
Typ Platby free
Podporované Jazyky 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"
            ]
        }
    ]
}