Google Privacy Shade

Description: Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying…

什麼是Google Privacy Shade?

Google Privacy Shade是由eustatiu.iagaru開發的Chrome擴展程式,該擴展的主要功能是“Description: Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying…”。

擴展截圖

screenshot
screenshot
screenshot

下載Google Privacy Shade擴展crx文件

下載Google Privacy Shade擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Description:

Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying about snoopers over your shoulder reading the messages, too. The app obscures the parts of your screen that you're not actively viewing while still letting you interact with the parts that are obscured.

With Google Privacy Shade, you can adjust the transparency of the shade to fit the privacy that you'd like. 

If you're reading sensitive information on your browser or working a crowded place, the Google Privacy Shade app could come in handy.

Extension shortcut:

CTRL + SHIFT + A

Contact:

[email protected]

Contribute / Report issues / Feedback: 

https://github.com/IagaruEustatiu/Google-Privacy-Shade/issues                    

擴展基本資訊

名稱 Google Privacy Shade Google Privacy Shade
ID kggohnpicliklihkoaeebjiiahgjddpb
官方網址 https://chromewebstore.google.com/detail/google-privacy-shade/kggohnpicliklihkoaeebjiiahgjddpb
簡介 Description: Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying…
檔案大小 17.14 KB
安裝次數 592
目前版本 1.0
更新時間 2018-01-15
上架時間 2018-01-15
評分 4.33/5 共 6 次評分
開發者 eustatiu.iagaru
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "short_name": "Google Privacy Shade",
    "name": "Google Privacy Shade",
    "manifest_version": 2,
    "version": "1.0",
    "browser_action": {
        "default_popup": "index.html",
        "default_title": "Google Privacy Shade"
    },
    "icons": {
        "16": ".\/media\/icon.png",
        "48": ".\/media\/icon.png",
        "128": ".\/media\/icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                ".\/js\/content_scripts\/enableApp.js",
                ".\/js\/content_scripts\/updateShadeCSS.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            ".\/js\/background.js"
        ],
        "persistent": false
    },
    "commands": {
        "_execute_page_action": {
            "suggested_key": {
                "default": "Ctrl+Shift+A",
                "mac": "MacCtrl+Shift+A"
            },
            "description": "Google Privacy Shade"
        }
    },
    "permissions": [
        "activeTab",
        "tabs",
        "background",
        "storage",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ]
}