Show Hide Passwords
A browser action to reveal your saved passwords.
Apa itu Show Hide Passwords?
Show Hide Passwords adalah ekstensi Chrome yang dikembangkan oleh akilawickramasekara, dan fitur utamanya adalah "A browser action to reveal your saved passwords.".
Unduh Berkas CRX Ekstensi Show Hide Passwords
Unduh file ekstensi Show Hide Passwords dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This App will allow you to show saved passwords in the browser..
Informasi Dasar Ekstensi
Nama | Show Hide Passwords |
ID | dakfaecjbjjojelpglfahpbibcgagbnj |
URL Resmi | https://chromewebstore.google.com/detail/show-hide-passwords/dakfaecjbjjojelpglfahpbibcgagbnj |
Deskripsi | A browser action to reveal your saved passwords. |
Ukuran File | 53.56 KB |
Jumlah Instalasi | 13 |
Versi Saat Ini | 1.1 |
Terakhir Diperbarui | 2018-01-27 |
Tanggal Publikasi | 2018-01-27 |
Penilaian | 5.00/5 Total 1 Penilaian |
Pengembang | akilawickramasekara |
Tipe Pembayaran | free |
Bahasa yang Didukung | 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'" } |