Fill form get
Fill form with get parameters
What is Fill form get?
Fill form get is a Chrome extension developed by https://digitalgg.com, and its main feature is "Fill form with get parameters".
Download Fill form get Extension CRX File
Download Fill form get extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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. Extension Basic Information
| Name | |
| ID | hlpbbilciikoohloghfnlofmgekenkpl |
| Official URL | https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl |
| Description | Fill form with get parameters |
| File Size | 32.72 KB |
| Installation Count | 22 |
| Current Version | 1.0 |
| Last Updated | 2016-05-07 |
| Publish Date | 2016-05-07 |
| Developer | https://digitalgg.com |
| Payment Type | free |
| Supported Languages | 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:\/\/*\/*"
]
} | |