smartfiller-chrome

Learns as you fill forms, you will never have to type the same thing twice.

Co to jest smartfiller-chrome?

smartfiller-chrome to rozszerzenie Chrome opracowane przez pablotomasborda, a jego główną funkcją jest „Learns as you fill forms, you will never have to type the same thing twice.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia smartfiller-chrome

Pobierz pliki rozszerzeń smartfiller-chrome 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

                        Learns as you fill forms, you will never have to type the same thing twice.
Works in your local browser memory, no server no cloud no accounts, no
payments, no subscription, and not filling the information in the form
filler. 
You are the only owner of the information.                    

Podstawowe informacje o rozszerzeniu

Nazwa smartfiller-chrome smartfiller-chrome
ID fhlkmhgjnaiojghodnfmaienkjooccah
Oficjalny URL https://chrome.google.com/webstore/detail/smartfiller-chrome/fhlkmhgjnaiojghodnfmaienkjooccah
Opis Learns as you fill forms, you will never have to type the same thing twice.
Rozmiar pliku 57.55 KB
Liczba instalacji 117
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2018-03-13
Data Publikacji 2018-03-13
Ocena 2.33/5 Łącznie 3 Oceny
Deweloper pablotomasborda
Typ Płatności free
Strona Rozszerzenia https://github.com/PabloBorda/smartfiller-chrome
Adres URL Strony Pomocy https://github.com/PabloBorda/smartfiller-chrome
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "smartfiller-chrome",
    "description": "Learns as you fill forms, you will never have to type the same thing twice.",
    "version": "1.1",
    "permissions": [
        "tabs",
        ""
    ],
    "background": {
        "scripts": [
            "jquery-2.1.0.min.js",
            "main.js",
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.0.min.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ],
    "browser_action": {
        "default_icon": "form.png",
        "default_popup": "background.html"
    }
}