Twitter Blue Blocker

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

What is Twitter Blue Blocker?

Twitter Blue Blocker is a Chrome extension developed by rlyshw, and its main feature is "An extension that (tries to) block twitter blue users as they load onto your TL".

Extension Screenshots

screenshot

Download Twitter Blue Blocker Extension CRX File

Download Twitter Blue Blocker extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
Official URL https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
Description An extension that (tries to) block twitter blue users as they load onto your TL
File Size 26.25 KB
Installation Count 40
Current Version 1.0
Last Updated 2023-04-25
Publish Date 2023-04-25
Developer rlyshw
Email [email protected]
Payment Type free
Extension Website https://github.com/rlyshw/blue-check-blocker
Supported Languages 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"
}