Form filler
Autosaves the Form you are working on from Time to Time, automatically.
Was ist Form filler?
Form filler ist eine Chrome-Erweiterung, die von Roman entwickelt wurde, und ihr Hauptmerkmal ist "Autosaves the Form you are working on from Time to Time, automatically.".
Erweiterungsscreenshots
Form filler-Erweiterungs-CRX-Datei herunterladen
Laden Sie Form filler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Grundlegende Informationen zur Erweiterung
| Name | |
| ID | hlloohcadnpmnhcadiednjlajnmbmigb |
| Offizielle URL | https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb |
| Beschreibung | Autosaves the Form you are working on from Time to Time, automatically. |
| Dateigröße | 16.91 KB |
| Installationsanzahl | 169 |
| Aktuelle Version | 0.0.5 |
| Letztes Update | 2014-12-31 |
| Veröffentlichungsdatum | 2014-12-31 |
| Bewertung | 1.00/5 Insgesamt 2 Bewertungen |
| Entwickler | Roman |
| Zahlungsart | free |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Form filler",
"version": "0.0.5",
"manifest_version": 2,
"description": "Autosaves the Form you are working on from Time to Time, automatically.",
"icons": {
"16": "images\/icon-16.png",
"128": "images\/icon-128.png"
},
"default_locale": "en",
"background": {
"scripts": [
"scripts\/background.js"
]
},
"page_action": {
"default_icon": {
"19": "images\/icon-19.png",
"38": "images\/icon-38.png"
},
"default_title": "form filler",
"default_popup": "popup.html"
},
"permissions": [
"storage"
],
"content_scripts": [
{
"matches": [
"http:\/\/*\/*",
"https:\/\/*\/*"
],
"js": [
"scripts\/page.js"
],
"css": [
"styles\/animate.css",
"styles\/icon.css",
"styles\/input.css"
],
"run_at": "document_end"
}
],
"web_accessible_resources": [
"images\/icon-38.png",
"images\/delete.png"
]
} | |