PrivacyScreen

Hide HTML Body while mouse not hovering over window

Co to jest PrivacyScreen?

PrivacyScreen to rozszerzenie Chrome opracowane przez https://wpooley.com, a jego główną funkcją jest „Hide HTML Body while mouse not hovering over window”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia PrivacyScreen

Pobierz pliki rozszerzeń PrivacyScreen w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
Oficjalny URL https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Opis Hide HTML Body while mouse not hovering over window
Rozmiar pliku 38.07 KB
Liczba instalacji 521
Aktualna Wersja 1.2
Ostatnia Aktualizacja 2018-05-02
Data Publikacji 2018-05-02
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper https://wpooley.com
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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": [
                ""
            ]
        }
    ]
}