Eight Dollars

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

Vad är Eight Dollars?

Eight Dollars är en Chrome-tillägg utvecklad av Walter Lim, och dess huvudfunktion är "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.".

Tilläggsskärmbilder

screenshot

Ladda ner Eight Dollars-förlängningens CRX-fil

Ladda ner Eight Dollars-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
Officiell webbadress https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
Beskrivning Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Filstorlek 3.25 MB
Antal Installationer 10,000
Aktuell Version 2.0
Senast Uppdaterad 2023-05-01
Publiceringsdatum 2022-11-12
Betyg 4.48/5 Totalt 83 Betyg
Utvecklare Walter Lim
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://github.com/wseagar/eight-dollars
Hjälpsida URL https://github.com/wseagar/eight-dollars
Stödda Språk 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"
    ]
}