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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย eustatiu.iagaru และคุณลักษณะหลักของมันคือ "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

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Google Privacy Shade

ดาวน์โหลดไฟล์ส่วนขยาย 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
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:\/\/*\/"
    ]
}