Eight Dollars

Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.

Co je Eight Dollars?

Eight Dollars je rozšíření Chrome vyvinuté Walter Lim, a jeho hlavní funkcí je „Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Eight Dollars

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

                        Eight Dollars helps Twitter users differentiate between users that paid for verification and users that were given Twitter Verification.

Got an idea for a feature or issues using the extension? Visit https://github.com/wseagar/eight-dollars/issues                    

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

Název Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
Oficiální URL https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
Popis Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Velikost souboru 3.25 MB
Počet instalací 10,000
Aktuální Verze 2.0
Poslední Aktualizace 2023-05-01
Datum Vydání 2022-11-12
Hodnocení 4.48/5 Celkem 83 Hodnocení
Vývojář Walter Lim
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/wseagar/eight-dollars
URL Stránky Nápovědy https://github.com/wseagar/eight-dollars
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Eight Dollars",
    "version": "2.0",
    "description": "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.",
    "icons": {
        "16": ".\/assets\/16.png",
        "32": ".\/assets\/32.png",
        "48": ".\/assets\/48.png",
        "256": ".\/assets\/256.png",
        "512": ".\/assets\/512.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "script.js",
                "search.js",
                "data\/verified.txt"
            ],
            "matches": [
                "https:\/\/twitter.com\/*",
                "https:\/\/mobile.twitter.com\/*"
            ]
        }
    ],
    "action": {
        "default_icon": {
            "16": ".\/assets\/16.png",
            "32": ".\/assets\/32.png"
        },
        "default_title": "Eight Dollars - Options",
        "default_popup": "options\/options.html"
    },
    "permissions": [
        "storage"
    ]
}