PrivacyScreen

Hide HTML Body while mouse not hovering over window

¿Qué es PrivacyScreen?

PrivacyScreen es una extensión de Chrome desarrollada por https://wpooley.com, y su función principal es "Hide HTML Body while mouse not hovering over window".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión PrivacyScreen

Descarga archivos de extensión PrivacyScreen en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
URL Oficial https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Descripción Hide HTML Body while mouse not hovering over window
Tamaño del Archivo 38.07 KB
Cantidad de Instalaciones 521
Versión Actual 1.2
Última Actualización 2018-05-02
Fecha de Publicación 2018-05-02
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador https://wpooley.com
Correo electrónico [email protected]
Tipo de Pago free
Idiomas Soportados 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": [
                ""
            ]
        }
    ]
}