Fill form get
Fill form with get parameters
Co je Fill form get?
Fill form get je rozšíření Chrome vyvinuté https://digitalgg.com, a jeho hlavní funkcí je „Fill form with get parameters“.
Stáhnout soubor CRX rozšíření Fill form get
Stáhněte si soubory rozšíření Fill form get ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.
Pokyny pro Použití Rozšíření
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.
Základní Informace o Rozšíření
Název | |
ID | hlpbbilciikoohloghfnlofmgekenkpl |
Oficiální URL | https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl |
Popis | Fill form with get parameters |
Velikost souboru | 32.72 KB |
Počet instalací | 22 |
Aktuální Verze | 1.0 |
Poslední Aktualizace | 2016-05-07 |
Datum Vydání | 2016-05-07 |
Vývojář | https://digitalgg.com |
Typ Platby | free |
Podporované Jazyky | 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:\/\/*\/*" ] } |