PrivacyScreen

Hide HTML Body while mouse not hovering over window

Cos'è PrivacyScreen?

PrivacyScreen è un'estensione di Chrome sviluppata da https://wpooley.com, e la sua funzione principale è "Hide HTML Body while mouse not hovering over window".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione PrivacyScreen

Scarica i file di estensione PrivacyScreen in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
URL Ufficiale https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Descrizione Hide HTML Body while mouse not hovering over window
Dimensione del File 38.07 KB
Conteggio Installazioni 521
Versione Corrente 1.2
Ultimo Aggiornamento 2018-05-02
Data di Pubblicazione 2018-05-02
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore https://wpooley.com
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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": [
                ""
            ]
        }
    ]
}