Fill form get

Fill form with get parameters

O que é Fill form get?

Fill form get é uma extensão do Chrome desenvolvida por https://digitalgg.com, e sua principal característica é "Fill form with get parameters".

Baixar o arquivo CRX da Extensão Fill form get

Baixe arquivos de extensão Fill form get no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
URL Oficial https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
Descrição Fill form with get parameters
Tamanho do Arquivo 32.72 KB
Contagem de Instalações 22
Versão Atual 1.0
Última Atualização 2016-05-07
Data de Publicação 2016-05-07
Desenvolvedor https://digitalgg.com
Tipo de Pagamento free
Idiomas Suportados 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:\/\/*\/*"
    ]
}