Autofill Checker
Check what the chrome autofill actually filled
Co to jest Autofill Checker?
Autofill Checker to rozszerzenie Chrome opracowane przez https://bramas.fr, a jego główną funkcją jest „Check what the chrome autofill actually filled”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Autofill Checker
Pobierz pliki rozszerzeń Autofill Checker 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
Podstawowe informacje o rozszerzeniu
Nazwa | Autofill Checker |
ID | nfdenjdodgbjbcbocechcbkhncakpieb |
Oficjalny URL | https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb |
Opis | Check what the chrome autofill actually filled |
Rozmiar pliku | 15.19 KB |
Liczba instalacji | 143 |
Aktualna Wersja | 1.2 |
Ostatnia Aktualizacja | 2017-01-07 |
Data Publikacji | 2017-01-07 |
Ocena | 3.67/5 Łącznie 3 Oceny |
Deweloper | https://bramas.fr |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/Bramas/autofill-checker |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Autofill Checker", "description": "Check what the chrome autofill actually filled", "version": "1.2", "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "content.js" ], "css": [ "style.css" ], "run_at": "document_idle" } ], "background": { "persistent": false, "scripts": [ "bg.js" ] }, "page_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "activeTab", "background" ], "icons": { "192": "icon.png" } } |