Credentials Autofill
Enable auto fill credentials
Co je Credentials Autofill?
Credentials Autofill je rozšíření Chrome vyvinuté Aniketos, a jeho hlavní funkcí je „Enable auto fill credentials“.
Snímky obrazovky rozšíření
Stáhnout soubor CRX rozšíření Credentials Autofill
Stáhněte si soubory rozšíření Credentials Autofill ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
Oficiální URL | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Popis | Enable auto fill credentials |
Velikost souboru | 160 KB |
Počet instalací | 55 |
Aktuální Verze | 1.0.0.5 |
Poslední Aktualizace | 2018-10-15 |
Datum Vydání | 2018-10-15 |
Vývojář | Aniketos |
Typ Platby | free |
Podporované Jazyky | 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", "*:\/\/*\/*" ] } |