View Privacy Settings
View the browser privacy settings
Qu'est-ce que View Privacy Settings ?
View Privacy Settings est une extension Chrome développée par benzihomo, et sa fonction principale est "View the browser privacy settings".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension View Privacy Settings
Téléchargez les fichiers d'extension View Privacy Settings au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
Press "Alt+Shift+V" to view the browsers privacy settings Informations de Base sur l'Extension
| Nom | |
| ID | hcpdbkoonabfhfkeiaanphdfonombbpb |
| URL Officiel | https://chrome.google.com/webstore/detail/view-privacy-settings/hcpdbkoonabfhfkeiaanphdfonombbpb |
| Description | View the browser privacy settings |
| Taille du Fichier | 13.5 KB |
| Nombre d'Installations | 80 |
| Version Actuelle | 0.1 |
| Dernière Mise à Jour | 2014-06-19 |
| Date de Publication | 2014-06-19 |
| Développeur | benzihomo |
| Type de Paiement | free |
| Langues Prises en Charge | 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"
}
}
} | |