Credentials Autofill
Enable auto fill credentials
Co to jest Credentials Autofill?
Credentials Autofill to rozszerzenie Chrome opracowane przez Aniketos, a jego główną funkcją jest „Enable auto fill credentials”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Credentials Autofill
Pobierz pliki rozszerzeń Credentials Autofill w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Credentials Autofill |
ID | kkifkadkcbpkfngiamhcobgeikpnbnel |
Oficjalny URL | https://chromewebstore.google.com/detail/credentials-autofill/kkifkadkcbpkfngiamhcobgeikpnbnel |
Opis | Enable auto fill credentials |
Rozmiar pliku | 160 KB |
Liczba instalacji | 55 |
Aktualna Wersja | 1.0.0.5 |
Ostatnia Aktualizacja | 2018-10-15 |
Data Publikacji | 2018-10-15 |
Deweloper | Aniketos |
Typ Płatności | free |
Obsługiwane Języki | 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", "*:\/\/*\/*" ] } |