Form filler
Autosaves the Form you are working on from Time to Time, automatically.
Vad är Form filler?
Form filler är en Chrome-tillägg utvecklad av Roman, och dess huvudfunktion är "Autosaves the Form you are working on from Time to Time, automatically.".
Tilläggsskärmbilder
Ladda ner Form filler-förlängningens CRX-fil
Ladda ner Form filler-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 | hlloohcadnpmnhcadiednjlajnmbmigb |
| Officiell webbadress | https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb |
| Beskrivning | Autosaves the Form you are working on from Time to Time, automatically. |
| Filstorlek | 16.91 KB |
| Antal Installationer | 169 |
| Aktuell Version | 0.0.5 |
| Senast Uppdaterad | 2014-12-31 |
| Publiceringsdatum | 2014-12-31 |
| Betyg | 1.00/5 Totalt 2 Betyg |
| Utvecklare | Roman |
| Betalningssätt | free |
| Stödda Språk | 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"
]
} | |