View Privacy Settings
View the browser privacy settings
View Privacy Settingsคืออะไร?
View Privacy Settings เป็นส่วนขยายของ Chrome ที่พัฒนาโดย benzihomo และคุณลักษณะหลักของมันคือ "View the browser privacy settings"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย View Privacy Settings
ดาวน์โหลดไฟล์ส่วนขยาย 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" } } } |