Credentials Autofill
Enable auto fill credentials
Apa itu Credentials Autofill?
Credentials Autofill adalah ekstensi Chrome yang dikembangkan oleh Aniketos, dan fitur utamanya adalah "Enable auto fill credentials".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Credentials Autofill
Unduh file ekstensi Credentials Autofill 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 extension allows you to save credentials for hosts. Each form input containing "user" or "password" in its name attribute will be filled with these data after focus event on form inputs appropriately.
Informasi Dasar Ekstensi
Nama | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
URL Resmi | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Deskripsi | Enable auto fill credentials |
Ukuran File | 160 KB |
Jumlah Instalasi | 55 |
Versi Saat Ini | 1.0.0.5 |
Terakhir Diperbarui | 2018-10-15 |
Tanggal Publikasi | 2018-10-15 |
Pengembang | Aniketos |
Tipe Pembayaran | free |
Bahasa yang Didukung | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Credentials Autofill", "version": "1.0.0.5", "description": "Enable auto fill credentials", "browser_action": { "default_icon": "icons\/icon16_disabled.png", "default_title": "Auto-fill credentials", "default_popup": "popup.html" }, "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "background": { "scripts": [ "event_script.js" ], "persistent": false }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery\/jquery-3.2.0.min.js", "content_script.js" ] } ], "permissions": [ "tabs", "*:\/\/*\/*" ] } |