Hide My Reddit Username

Avoid prying eyes and hide your reddit username until you hover over it.

O que é Hide My Reddit Username?

Hide My Reddit Username é uma extensão do Chrome desenvolvida por CJS Software, e sua principal característica é "Avoid prying eyes and hide your reddit username until you hover over it.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hide My Reddit Username

Baixe arquivos de extensão Hide My Reddit Username 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

                        Made with love, for /r/beta.

Hides your Reddit username from the top right corner, until you hover over it. Avoid prying eyes from knowing your Reddit username.                    

Informações Básicas da Extensão

Nome Hide My Reddit Username Hide My Reddit Username
ID hfabnjlohiidlkneecgnhimcfpkaclff
URL Oficial https://chromewebstore.google.com/detail/hide-my-reddit-username/hfabnjlohiidlkneecgnhimcfpkaclff
Descrição Avoid prying eyes and hide your reddit username until you hover over it.
Tamanho do Arquivo 16.63 KB
Contagem de Instalações 368
Versão Atual 1.00
Última Atualização 2018-05-28
Data de Publicação 2018-05-28
Classificação 4.00/5 Total de 2 Avaliações
Desenvolvedor CJS Software
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hide My Reddit Username",
    "version": "1.00",
    "manifest_version": 2,
    "description": "Avoid prying eyes and hide your reddit username until you hover over it.",
    "icons": {
        "128": "spin-big.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.reddit.com\/*"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "scripts": [
            "script.js"
        ],
        "persistent": true
    },
    "permissions": [
        "activeTab"
    ]
}