Form filler
Autosaves the Form you are working on from Time to Time, automatically.
Co to jest Form filler?
Form filler to rozszerzenie Chrome opracowane przez Roman, a jego główną funkcją jest „Autosaves the Form you are working on from Time to Time, automatically.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Form filler
Pobierz pliki rozszerzeń Form filler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | hlloohcadnpmnhcadiednjlajnmbmigb |
Oficjalny URL | https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb |
Opis | Autosaves the Form you are working on from Time to Time, automatically. |
Rozmiar pliku | 16.91 KB |
Liczba instalacji | 169 |
Aktualna Wersja | 0.0.5 |
Ostatnia Aktualizacja | 2014-12-31 |
Data Publikacji | 2014-12-31 |
Ocena | 1.00/5 Łącznie 2 Oceny |
Deweloper | Roman |
Typ Płatności | free |
Obsługiwane Języki | 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" ] } |