Fill form get

Fill form with get parameters

Co to jest Fill form get?

Fill form get to rozszerzenie Chrome opracowane przez https://digitalgg.com, a jego główną funkcją jest „Fill form with get parameters”.

Pobierz plik CRX rozszerzenia Fill form get

Pobierz pliki rozszerzeń Fill form get 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

                        Fill form with get parameters from url.
For example: website (example.com) contains form with two fields (name, surname) and we know that input field name is "name" and "surname", so we can set get parameters to fill form.
For example: if url will be example.com?name=test, the form input with name "name" will be filled with value test.                    

Podstawowe informacje o rozszerzeniu

Nazwa Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
Oficjalny URL https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
Opis Fill form with get parameters
Rozmiar pliku 32.72 KB
Liczba instalacji 22
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2016-05-07
Data Publikacji 2016-05-07
Deweloper https://digitalgg.com
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fill form get",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Fill form with get parameters",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ]
}