Blue Check Hider

Identify and hide Twitter Blue users

O que é Blue Check Hider?

Blue Check Hider é uma extensão do Chrome desenvolvida por https://gsajith.com, e sua principal característica é "Identify and hide Twitter Blue users".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Blue Check Hider

Baixe arquivos de extensão Blue Check Hider 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

                        This extension will hide any users with a verified checkmark next to their name in the Twitter web UI.

You should install it if you want a peaceful browsing experience free of brands, ads, and those who pay $8.                    

Informações Básicas da Extensão

Nome Blue Check Hider Blue Check Hider
ID jhkoihkndkemdikaiafkiolgidghjfkl
URL Oficial https://chromewebstore.google.com/detail/blue-check-hider/jhkoihkndkemdikaiafkiolgidghjfkl
Descrição Identify and hide Twitter Blue users
Tamanho do Arquivo 497 KB
Contagem de Instalações 611
Versão Atual 1.3
Última Atualização 2023-05-05
Data de Publicação 2023-04-21
Classificação 4.25/5 Total de 8 Avaliações
Desenvolvedor https://gsajith.com
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/gsajith/blue-check-hider
URL da Página de Ajuda https://github.com/gsajith/blue-check-hider
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Blue Check Hider",
    "version": "1.3",
    "description": "Identify and hide Twitter Blue users",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "js": [
                ".\/static\/js\/content.js"
            ],
            "run_at": "document_end",
            "matches": [
                "https:\/\/*.twitter.com\/*",
                "http:\/\/*.twitter.com\/*",
                "https:\/\/twitter.com\/*",
                "http:\/\/twitter.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/static\/js\/background.js",
        "type": "module"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": {
            "16": "icon-16.png",
            "32": "icon-32.png",
            "48": "icon-48.png",
            "128": "icon-128.png"
        },
        "default_title": "Blue Check Hider"
    }
}