Remove twitter login blocker

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

Vad är Remove twitter login blocker?

Remove twitter login blocker är en Chrome-tillägg utvecklad av BeniNovakDev, och dess huvudfunktion är "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Remove twitter login blocker-förlängningens CRX-fil

Ladda ner Remove twitter login blocker-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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/                    

Grundläggande Information om Tillägg

Namn Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
Officiell webbadress https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
Beskrivning Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
Filstorlek 23.39 KB
Antal Installationer 2,414
Aktuell Version 1.0
Senast Uppdaterad 2022-03-30
Publiceringsdatum 2022-03-28
Betyg 3.36/5 Totalt 11 Betyg
Utvecklare BeniNovakDev
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}