View Privacy Settings
View the browser privacy settings
What is View Privacy Settings?
View Privacy Settings is a Chrome extension developed by benzihomo, and its main feature is "View the browser privacy settings".
Extension Screenshots
Download View Privacy Settings Extension CRX File
Download View Privacy Settings extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Press "Alt+Shift+V" to view the browsers privacy settings
Extension Basic Information
Name | |
ID | hcpdbkoonabfhfkeiaanphdfonombbpb |
Official URL | https://chrome.google.com/webstore/detail/view-privacy-settings/hcpdbkoonabfhfkeiaanphdfonombbpb |
Description | View the browser privacy settings |
File Size | 13.5 KB |
Installation Count | 80 |
Current Version | 0.1 |
Last Updated | 2014-06-19 |
Publish Date | 2014-06-19 |
Developer | benzihomo |
Payment Type | free |
Supported Languages | 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" } } } |