PrivacyScreen

Hide HTML Body while mouse not hovering over window

PrivacyScreen là gì?

PrivacyScreen là một tiện ích mở rộng Chrome được phát triển bởi https://wpooley.com, và tính năng chính của nó là "Hide HTML Body while mouse not hovering over window".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng PrivacyScreen

Tải xuống các tệp mở rộng PrivacyScreen dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên PrivacyScreen PrivacyScreen
ID bndclkkabaajpgnfimggpjkjbocchjco
URL Chính Thức https://chromewebstore.google.com/detail/privacyscreen/bndclkkabaajpgnfimggpjkjbocchjco
Mô tả Hide HTML Body while mouse not hovering over window
Kích Thước Tệp 38.07 KB
Số Lần Cài Đặt 521
Phiên Bản Hiện Tại 1.2
Cập Nhật Lần Cuối 2018-05-02
Ngày Phát Hành 2018-05-02
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://wpooley.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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": [
                ""
            ]
        }
    ]
}