PrivacyScreen

Hide HTML Body while mouse not hovering over window

O que é PrivacyScreen?

PrivacyScreen é uma extensão do Chrome desenvolvida por https://wpooley.com, e sua principal característica é "Hide HTML Body while mouse not hovering over window".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão PrivacyScreen

Baixe arquivos de extensão PrivacyScreen 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

                        Privacy Screen is a Chrome Extension that hides HTML Body while mouse not hovering over window.

Under the configuration, you will be able to choose the mode in which the extension operates (blacklist/whitelist)
With blacklist mode, site you enter to the blacklist will be hidden when your mouse is not over the window. In whitelist mode is the opposite of blacklist, and will apply the privacy screen to all sites, except the ones entered into the whitelist.                    

Informações Básicas da Extensão

Nome PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
URL Oficial https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Descrição Hide HTML Body while mouse not hovering over window
Tamanho do Arquivo 38.07 KB
Contagem de Instalações 521
Versão Atual 1.2
Última Atualização 2018-05-02
Data de Publicação 2018-05-02
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor https://wpooley.com
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "PrivacyScreen",
    "description": "Hide HTML Body while mouse not hovering over window",
    "version": "1.2",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.js",
                "content.js"
            ],
            "matches": [
                ""
            ]
        }
    ]
}