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…

Hvad er Google Privacy Shade?

Google Privacy Shade er en Chrome-udvidelse udviklet af eustatiu.iagaru, og dens hovedfunktion er "Description: Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying…".

Udvidelsesskærmbilleder

screenshot
screenshot
screenshot

Download Google Privacy Shade-udvidelses-CRX-fil

Download Google Privacy Shade-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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                    

Grundlæggende oplysninger om udvidelsen

Navn Google Privacy Shade Google Privacy Shade
ID kggohnpicliklihkoaeebjiiahgjddpb
Officiel URL https://chromewebstore.google.com/detail/google-privacy-shade/kggohnpicliklihkoaeebjiiahgjddpb
Beskrivelse Description: Google Privacy Shade is a new app that'll let you browse your personal info, like email or messages, without worrying…
Filstørrelse 17.14 KB
Antal Installationer 592
Nuværende Version 1.0
Senest Opdateret 2018-01-15
Udgivelsesdato 2018-01-15
Bedømmelse 4.33/5 Samlet 6 Bedømmelser
Udvikler eustatiu.iagaru
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog 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:\/\/*\/"
    ]
}