Fill form get
Fill form with get parameters
Cos'è Fill form get?
Fill form get è un'estensione di Chrome sviluppata da https://digitalgg.com, e la sua funzione principale è "Fill form with get parameters".
Scarica il file CRX dell'estensione Fill form get
Scarica i file di estensione Fill form get in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | hlpbbilciikoohloghfnlofmgekenkpl |
URL Ufficiale | https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl |
Descrizione | Fill form with get parameters |
Dimensione del File | 32.72 KB |
Conteggio Installazioni | 22 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2016-05-07 |
Data di Pubblicazione | 2016-05-07 |
Sviluppatore | https://digitalgg.com |
Tipo di Pagamento | free |
Lingue Supportate | 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:\/\/*\/*" ] } |