Remove twitter login blocker

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

Remove twitter login blocker क्या है?

Remove twitter login blocker BeniNovakDev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Remove twitter login blocker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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/                    

एक्सटेंशन की मूल जानकारी

नाम Remove twitter login blocker Remove twitter login blocker
ID gbhahioefeljhgjpkpicielemekceafn
आधिकारिक URL https://chromewebstore.google.com/detail/remove-twitter-login-bloc/gbhahioefeljhgjpkpicielemekceafn
विवरण Removes the annoying Twitter log in/sign up blocker, which prevents the use of Twitter without an account.
फ़ाइल का आकार 23.39 KB
स्थापना संख्या 2,414
वर्तमान संस्करण 1.0
अंतिम अपडेट 2022-03-30
प्रकाशन तिथि 2022-03-28
रेटिंग 3.36/5 कुल 11 रेटिंग्स
डेवलपर BeniNovakDev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}