Eight Dollars

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

Cos'è Eight Dollars?

Eight Dollars è un'estensione di Chrome sviluppata da Walter Lim, e la sua funzione principale è "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Eight Dollars

Scarica i file di estensione Eight Dollars in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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                    

Informazioni di Base sull'Estensione

Nome Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
URL Ufficiale https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
Descrizione Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Dimensione del File 3.25 MB
Conteggio Installazioni 10,000
Versione Corrente 2.0
Ultimo Aggiornamento 2023-05-01
Data di Pubblicazione 2022-11-12
Valutazione 4.48/5 Totale 83 Valutazioni
Sviluppatore Walter Lim
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/wseagar/eight-dollars
URL della Pagina di Aiuto https://github.com/wseagar/eight-dollars
Lingue Supportate 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"
    ]
}