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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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:\/\/*\/"
    ]
}