Fill form get

Fill form with get parameters

Vad är Fill form get?

Fill form get är en Chrome-tillägg utvecklad av https://digitalgg.com, och dess huvudfunktion är "Fill form with get parameters".

Ladda ner Fill form get-förlängningens CRX-fil

Ladda ner Fill form get-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

                        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.                    

Grundläggande Information om Tillägg

Namn Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
Officiell webbadress https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
Beskrivning Fill form with get parameters
Filstorlek 32.72 KB
Antal Installationer 22
Aktuell Version 1.0
Senast Uppdaterad 2016-05-07
Publiceringsdatum 2016-05-07
Utvecklare https://digitalgg.com
Betalningssätt free
Stödda Språk 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:\/\/*\/*"
    ]
}