Autofill Checker
Check what the chrome autofill actually filled
Cos'è Autofill Checker?
Autofill Checker è un'estensione di Chrome sviluppata da https://bramas.fr, e la sua funzione principale è "Check what the chrome autofill actually filled".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Autofill Checker
Scarica i file di estensione Autofill Checker in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
Informazioni di Base sull'Estensione
Nome | Autofill Checker |
ID | nfdenjdodgbjbcbocechcbkhncakpieb |
URL Ufficiale | https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb |
Descrizione | Check what the chrome autofill actually filled |
Dimensione del File | 15.19 KB |
Conteggio Installazioni | 143 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2017-01-07 |
Data di Pubblicazione | 2017-01-07 |
Valutazione | 3.67/5 Totale 3 Valutazioni |
Sviluppatore | https://bramas.fr |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://github.com/Bramas/autofill-checker |
Lingue Supportate | 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" } } |