View Privacy Settings
View the browser privacy settings
Cos'è View Privacy Settings?
View Privacy Settings è un'estensione di Chrome sviluppata da benzihomo, e la sua funzione principale è "View the browser privacy settings".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione View Privacy Settings
Scarica i file di estensione View Privacy Settings in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Press "Alt+Shift+V" to view the browsers privacy settings
Informazioni di Base sull'Estensione
Nome | |
ID | hcpdbkoonabfhfkeiaanphdfonombbpb |
URL Ufficiale | https://chrome.google.com/webstore/detail/view-privacy-settings/hcpdbkoonabfhfkeiaanphdfonombbpb |
Descrizione | View the browser privacy settings |
Dimensione del File | 13.5 KB |
Conteggio Installazioni | 80 |
Versione Corrente | 0.1 |
Ultimo Aggiornamento | 2014-06-19 |
Data di Pubblicazione | 2014-06-19 |
Sviluppatore | benzihomo |
Tipo di Pagamento | free |
Lingue Supportate | 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" } } } |