View Privacy Settings
View the browser privacy settings
View Privacy Settingsとは何ですか?
View Privacy Settingsはbenzihomoによって開発されたChromeの拡張機能で、その主な機能は「View the browser privacy settings」です。
拡張機能のスクリーンショット
View Privacy Settings拡張機能のCRXファイルをダウンロード
View Privacy Settings拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
Press "Alt+Shift+V" to view the browsers privacy settings 拡張機能の基本情報
| 名前 | |
| ID | hcpdbkoonabfhfkeiaanphdfonombbpb |
| 公式URL | https://chrome.google.com/webstore/detail/view-privacy-settings/hcpdbkoonabfhfkeiaanphdfonombbpb |
| 説明 | View the browser privacy settings |
| ファイルサイズ | 13.5 KB |
| インストール数 | 80 |
| 現在のバージョン | 0.1 |
| 最終更新日 | 2014-06-19 |
| 公開日 | 2014-06-19 |
| 開発者 | benzihomo |
| 支払い方法 | free |
| 対応言語 | 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"
}
}
} | |