Eight Dollars

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

O que é Eight Dollars?

Eight Dollars é uma extensão do Chrome desenvolvida por Walter Lim, e sua principal característica é "Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Eight Dollars

Baixe arquivos de extensão Eight Dollars no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Eight Dollars Eight Dollars
ID fjbponfbognnefnmbffcfllkibbbobki
URL Oficial https://chromewebstore.google.com/detail/eight-dollars/fjbponfbognnefnmbffcfllkibbbobki
Descrição Eight Dollars can help you tell the difference between actual verified accounts and twitter blue users.
Tamanho do Arquivo 3.25 MB
Contagem de Instalações 10,000
Versão Atual 2.0
Última Atualização 2023-05-01
Data de Publicação 2022-11-12
Classificação 4.48/5 Total de 83 Avaliações
Desenvolvedor Walter Lim
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/wseagar/eight-dollars
URL da Página de Ajuda https://github.com/wseagar/eight-dollars
Idiomas Suportados 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"
    ]
}