PrivacyScreen

Hide HTML Body while mouse not hovering over window

Vad är PrivacyScreen?

PrivacyScreen är en Chrome-tillägg utvecklad av https://wpooley.com, och dess huvudfunktion är "Hide HTML Body while mouse not hovering over window".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner PrivacyScreen-förlängningens CRX-fil

Ladda ner PrivacyScreen-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
Officiell webbadress https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Beskrivning Hide HTML Body while mouse not hovering over window
Filstorlek 38.07 KB
Antal Installationer 521
Aktuell Version 1.2
Senast Uppdaterad 2018-05-02
Publiceringsdatum 2018-05-02
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare https://wpooley.com
E-post [email protected]
Betalningssätt free
Stödda Språk 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": [
                ""
            ]
        }
    ]
}