Autofill Checker
Check what the chrome autofill actually filled
Vad är Autofill Checker?
Autofill Checker är en Chrome-tillägg utvecklad av https://bramas.fr, och dess huvudfunktion är "Check what the chrome autofill actually filled".
Tilläggsskärmbilder
Ladda ner Autofill Checker-förlängningens CRX-fil
Ladda ner Autofill Checker-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
Grundläggande Information om Tillägg
| Namn | |
| ID | nfdenjdodgbjbcbocechcbkhncakpieb |
| Officiell webbadress | https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb |
| Beskrivning | Check what the chrome autofill actually filled |
| Filstorlek | 15.19 KB |
| Antal Installationer | 143 |
| Aktuell Version | 1.2 |
| Senast Uppdaterad | 2017-01-07 |
| Publiceringsdatum | 2017-01-07 |
| Betyg | 3.67/5 Totalt 3 Betyg |
| Utvecklare | https://bramas.fr |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/Bramas/autofill-checker |
| Stödda Språk | 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"
}
} | |