Twitter Blue Blocker

An extension that (tries to) block twitter blue users as they load onto your TL

Twitter Blue Blocker क्या है?

Twitter Blue Blocker rlyshw द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An extension that (tries to) block twitter blue users as they load onto your TL"।

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

screenshot

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

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

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

                        Attempts to block blue checks for you as you scroll.
They'll still appear on the TL the first time since this doesn't update the UI, but they'll be added to your block list. 

if you'd like to send me $8 instead
venmo/paypal: rlyshw                    

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

नाम Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
आधिकारिक URL https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
विवरण An extension that (tries to) block twitter blue users as they load onto your TL
फ़ाइल का आकार 26.25 KB
स्थापना संख्या 40
वर्तमान संस्करण 1.0
अंतिम अपडेट 2023-04-25
प्रकाशन तिथि 2023-04-25
डेवलपर rlyshw
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/rlyshw/blue-check-blocker
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Twitter Blue Blocker",
    "description": "An extension that (tries to) block twitter blue users as they load onto your TL",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "https:\/\/*.twitter.com\/*"
            ],
            "runAt": "document_start",
            "js": [
                "content-script.js"
            ]
        }
    ],
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/blue_block16.png",
            "32": "\/images\/blue_block32.png",
            "48": "\/images\/blue_block48.png",
            "128": "\/images\/blue_block128.png"
        }
    },
    "icons": {
        "16": "\/images\/blue_block16.png",
        "32": "\/images\/blue_block32.png",
        "48": "\/images\/blue_block48.png",
        "128": "\/images\/blue_block128.png"
    },
    "options_page": "options.html"
}