Credentials Autofill
Enable auto fill credentials
Vad är Credentials Autofill?
Credentials Autofill är en Chrome-tillägg utvecklad av Aniketos, och dess huvudfunktion är "Enable auto fill credentials".
Tilläggsskärmbilder
Ladda ner Credentials Autofill-förlängningens CRX-fil
Ladda ner Credentials Autofill-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
Officiell webbadress | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Beskrivning | Enable auto fill credentials |
Filstorlek | 160 KB |
Antal Installationer | 55 |
Aktuell Version | 1.0.0.5 |
Senast Uppdaterad | 2018-10-15 |
Publiceringsdatum | 2018-10-15 |
Utvecklare | Aniketos |
Betalningssätt | free |
Stödda Språk | 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", "*:\/\/*\/*" ] } |