Form Templates
Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Vad är Form Templates?
Form Templates är en Chrome-tillägg utvecklad av McSodbrenner, och dess huvudfunktion är "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".
Tilläggsskärmbilder
Ladda ner Form Templates-förlängningens CRX-fil
Ladda ner Form Templates-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | ![]() |
ID | nnlhpmkdmolhbkbnmiambphhkepekomh |
Officiell webbadress | https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh |
Beskrivning | Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data). |
Filstorlek | 51.8 KB |
Antal Installationer | 223 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2018-03-31 |
Publiceringsdatum | 2018-03-31 |
Betyg | 3.48/5 Totalt 27 Betyg |
Utvecklare | McSodbrenner |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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 } ] } |