Form Templates
Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
O que é Form Templates?
Form Templates é uma extensão do Chrome desenvolvida por McSodbrenner, e sua principal característica é "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Form Templates
Baixe arquivos de extensão Form Templates 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
You have to test a big form and have to fill the complete form again and again? Then this extension is for you. It helps you to generate dummy data and to fill the complete form with just one keyboard shortcut. And you are able to create templates if you want to fill in the same data again and again with some dummy data. Very useful if you have a catch all email address: Use the placeholder # to generate a counting number each page reload. For example in test#@yourdomain.com. Take a look at the screenshots on how to use it.
Informações Básicas da Extensão
Nome | ![]() |
ID | nnlhpmkdmolhbkbnmiambphhkepekomh |
URL Oficial | https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh |
Descrição | Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data). |
Tamanho do Arquivo | 51.8 KB |
Contagem de Instalações | 223 |
Versão Atual | 1.0 |
Última Atualização | 2018-03-31 |
Data de Publicação | 2018-03-31 |
Classificação | 3.48/5 Total de 27 Avaliações |
Desenvolvedor | McSodbrenner |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Form Templates", "version": "1.0", "description": "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).", "icons": { "128": "icon.png" }, "browser_action": { "default_popup": "popup.htm" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "jquery.min.js", "jquery.devform.js", "jquery.hotkeys.js", "jquery.dummy.js", "init.js" ], "run_at": "document_idle", "all_frames": true } ] } |