FormyMcFormstein OR Hidden Field Enabler

Identify and enable hidden form input elements.

O que é FormyMcFormstein OR Hidden Field Enabler?

FormyMcFormstein OR Hidden Field Enabler é uma extensão do Chrome desenvolvida por mcfr4g, e sua principal característica é "Identify and enable hidden form input elements.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão FormyMcFormstein OR Hidden Field Enabler

Baixe arquivos de extensão FormyMcFormstein OR Hidden Field Enabler 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

                        Make Developing forms easier by displaying the hidden fields at the click of a button.

Display the hidden form input elements simply by clicking the icon. Enabled fields will appear pale blue and bordered. Useful for debugging development.

Let me know if this tool is useful and I may consider building a few more with options.

** Update ** Added context fix to enable fields within sub frames.                    

Informações Básicas da Extensão

Nome FormyMcFormstein OR Hidden Field Enabler FormyMcFormstein OR Hidden Field Enabler
ID agaglpiicognebahockafpgcmeenhpnb
URL Oficial https://chromewebstore.google.com/detail/formymcformstein-or-hidde/agaglpiicognebahockafpgcmeenhpnb
Descrição Identify and enable hidden form input elements.
Tamanho do Arquivo 34.67 KB
Contagem de Instalações 302
Versão Atual 1.1.0
Última Atualização 2014-10-20
Data de Publicação 2014-10-20
Classificação 4.00/5 Total de 1 Avaliações
Desenvolvedor mcfr4g
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://www.karlhennigan.com
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "FormyMcFormstein OR Hidden Field Enabler",
    "description": "Identify and enable hidden form input elements.",
    "version": "1.1.0",
    "author": "Karl Hennigan",
    "browser_action": {
        "default_icon": "favicon-spanner.png",
        "default_popup": "popup.html"
    },
    "background": {
        "scripts": [
            "jquery-2.1.1.min.js",
            "extension.css"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "css": [
                "extension.css"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "background.js"
            ],
            "all_frames": true
        }
    ]
}