Show Hide Passwords
A browser action to reveal your saved passwords.
ما هو Show Hide Passwords؟
Show Hide Passwords هو إضافة Chrome تم تطويرها بواسطة akilawickramasekara، والميزة الرئيسية لها هي "A browser action to reveal your saved passwords.".
تحميل ملف CRX للإضافة Show Hide Passwords
قم بتنزيل ملفات الامتداد Show Hide Passwords بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This App will allow you to show saved passwords in the browser..
معلومات أساسية عن التمديد
الاسم | Show Hide Passwords |
ID | dakfaecjbjjojelpglfahpbibcgagbnj |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
الوصف | A browser action to reveal your saved passwords. |
حجم الملف | 53.56 KB |
عدد التثبيتات | 13 |
النسخة الحالية | 1.1 |
آخر تحديث | 2018-01-27 |
تاريخ النشر | 2018-01-27 |
تقييم | 5.00/5 مجموع تقييمات 1 |
المطور | akilawickramasekara |
نوع الدفع | free |
اللغات المدعومة | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Show Hide Passwords", "version": "1.1", "description": "A browser action to reveal your saved passwords.", "browser_action": { "default_title": "Show My Passwords", "default_icon": "padlock-4-16.png" }, "icons": { "16": "padlock-4-16.png", "48": "padlock-4-48.png", "128": "padlock-4-256.png" }, "content_scripts": [ { "js": [ "jquery-3.3.1.min.js", "script.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ], "background": { "scripts": [ "jquery-3.3.1.min.js", "script.js" ], "persistent": false }, "manifest_version": 2, "web_accessible_resources": [ "jquery-3.3.1.min.js", "script.js" ], "content_security_policy": "script-src 'self' https:\/\/ajax.googleapis.com; object-src 'self'" } |