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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } } } |