Twitter Blue Blocker

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

Wat is Twitter Blue Blocker?

Twitter Blue Blocker is een Chrome-extensie ontwikkeld door rlyshw, en de belangrijkste functie is "An extension that (tries to) block twitter blue users as they load onto your TL".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Twitter Blue Blocker

Download Twitter Blue Blocker-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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                    

Basisinformatie over de Extensie

Naam Twitter Blue Blocker Twitter Blue Blocker
ID oenpfikjdpcjchnooafpppoaaailendg
Officiële URL https://chromewebstore.google.com/detail/twitter-blue-blocker/oenpfikjdpcjchnooafpppoaaailendg
Beschrijving An extension that (tries to) block twitter blue users as they load onto your TL
Bestandsgrootte 26.25 KB
Aantal Installaties 40
Huidige Versie 1.0
Laatst Bijgewerkt 2023-04-25
Publicatiedatum 2023-04-25
Ontwikkelaar rlyshw
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/rlyshw/blue-check-blocker
Ondersteunde Talen 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"
}