View Privacy Settings

View the browser privacy settings

Wat is View Privacy Settings?

View Privacy Settings is een Chrome-extensie ontwikkeld door benzihomo, en de belangrijkste functie is "View the browser privacy settings".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie View Privacy Settings

Download View Privacy Settings-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        Press "Alt+Shift+V" to view the browsers privacy settings                    

Basisinformatie over de Extensie

Naam View Privacy Settings View Privacy Settings
ID hcpdbkoonabfhfkeiaanphdfonombbpb
Officiële URL https://chrome.google.com/webstore/detail/view-privacy-settings/hcpdbkoonabfhfkeiaanphdfonombbpb
Beschrijving View the browser privacy settings
Bestandsgrootte 13.5 KB
Aantal Installaties 80
Huidige Versie 0.1
Laatst Bijgewerkt 2014-06-19
Publicatiedatum 2014-06-19
Ontwikkelaar benzihomo
Betalingswijze free
Ondersteunde Talen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "View Privacy Settings",
    "description": "View the browser privacy settings",
    "version": "0.1",
    "manifest_version": 2,
    "permissions": [
        "privacy",
        "tabs",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "icons": {
        "16": "icon-16.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "extension.js"
            ]
        }
    ],
    "commands": {
        "toggle-privacy-view": {
            "suggested_key": {
                "default": "Alt+Shift+V"
            },
            "description": "Toggle Privacy Viewer"
        }
    }
}