Credentials Autofill
Enable auto fill credentials
Hvad er Credentials Autofill?
Credentials Autofill er en Chrome-udvidelse udviklet af Aniketos, og dens hovedfunktion er "Enable auto fill credentials".
Udvidelsesskærmbilleder
Download Credentials Autofill-udvidelses-CRX-fil
Download Credentials Autofill-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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æggende oplysninger om udvidelsen
Navn | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
Officiel URL | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Beskrivelse | Enable auto fill credentials |
Filstørrelse | 160 KB |
Antal Installationer | 55 |
Nuværende Version | 1.0.0.5 |
Senest Opdateret | 2018-10-15 |
Udgivelsesdato | 2018-10-15 |
Udvikler | Aniketos |
Betalingsmetode | free |
Understøttede Sprog | 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", "*:\/\/*\/*" ] } |