Blue Check Hider

Identify and hide Twitter Blue users

Co je Blue Check Hider?

Blue Check Hider je rozšíření Chrome vyvinuté https://gsajith.com, a jeho hlavní funkcí je „Identify and hide Twitter Blue users“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Blue Check Hider

Stáhněte si soubory rozšíření Blue Check Hider ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.

You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.                    

Základní Informace o Rozšíření

Název Blue Check Hider Blue Check Hider
ID jhkoihkndkemdikaiafkiolgidghjfkl
Oficiální URL https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl
Popis Identify and hide Twitter Blue users
Velikost souboru 497 KB
Počet instalací 611
Aktuální Verze 1.3
Poslední Aktualizace 2023-05-05
Datum Vydání 2023-04-21
Hodnocení 4.25/5 Celkem 8 Hodnocení
Vývojář https://gsajith.com
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/gsajith/blue-check-hider
URL Stránky Nápovědy https://github.com/gsajith/blue-check-hider
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blue Check Hider",
    "version": "1.3",
    "description": "Identify and hide Twitter Blue users",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "http:\/\/*.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Blue Check Hider"
    }
}