Twitter Safe Checkmark

Helps you distinguish between actually verified and paid Twitter accounts

Co je Twitter Safe Checkmark?

Twitter Safe Checkmark je rozšíření Chrome vyvinuté deltaspider, a jeho hlavní funkcí je „Helps you distinguish between actually verified and paid Twitter accounts“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Twitter Safe Checkmark

Stáhněte si soubory rozšíření Twitter Safe Checkmark 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í

                        Twitter Safe Checkmark

Quickly see if a Twitter account is officially verified (the way it used to be), if the account holder simply paid for the blue checkmark. Also shows official business or government accounts.

You can choose a different color for each Twitter account type.                    

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

Název Twitter Safe Checkmark Twitter Safe Checkmark
ID mpfelaapmlbgjblkdmdijaokggfdmfgj
Oficiální URL https://chromewebstore.google.com/detail/twitter-safe-checkmark/mpfelaapmlbgjblkdmdijaokggfdmfgj
Popis Helps you distinguish between actually verified and paid Twitter accounts
Velikost souboru 66.82 KB
Počet instalací 210
Aktuální Verze 1.0.5
Poslední Aktualizace 2023-03-23
Datum Vydání 2022-11-14
Hodnocení 3.80/5 Celkem 5 Hodnocení
Vývojář deltaspider
E-mail [email protected]
Typ Platby free
URL Stránky Zásad Ochrany Soukromí https://www.bubblespider.com/privacy-policy
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Twitter Safe Checkmark",
    "version": "1.0.5",
    "description": "Helps you distinguish between actually verified and paid Twitter accounts",
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "js": [
                "import-content.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "pages\/popup\/index.html",
        "default_icon": {
            "16": "img\/logo16.png",
            "32": "img\/logo32.png",
            "48": "img\/logo48.png",
            "128": "img\/logo128.png"
        }
    },
    "icons": {
        "48": "img\/logo48.png",
        "128": "img\/logo128.png"
    },
    "permissions": [
        "storage"
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script_twitter_check.js",
                "img\/*.png",
                "img\/*.svg",
                "pages\/*.html"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        },
        {
            "resources": [
                "chunks\/*-*.js",
                "content.js"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/www.twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ]
}