Form filler
Autosaves the Form you are working on from Time to Time, automatically.
Cos'è Form filler?
Form filler è un'estensione di Chrome sviluppata da Roman, e la sua funzione principale è "Autosaves the Form you are working on from Time to Time, automatically.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Form filler
Scarica i file di estensione Form filler 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 | |
| ID | hlloohcadnpmnhcadiednjlajnmbmigb |
| URL Ufficiale | https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb |
| Descrizione | Autosaves the Form you are working on from Time to Time, automatically. |
| Dimensione del File | 16.91 KB |
| Conteggio Installazioni | 169 |
| Versione Corrente | 0.0.5 |
| Ultimo Aggiornamento | 2014-12-31 |
| Data di Pubblicazione | 2014-12-31 |
| Valutazione | 1.00/5 Totale 2 Valutazioni |
| Sviluppatore | Roman |
| Tipo di Pagamento | free |
| Lingue Supportate | 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"
]
} | |