Form Templates
Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).
Что такое Form Templates?
Form Templates - это расширение Chrome, разработанное McSodbrenner, и его основная функция - "Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data).".
Снимки экрана расширения
Скачать файл CRX расширения Form Templates
Скачайте файлы расширений Form Templates в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | ![]() |
ID | nnlhpmkdmolhbkbnmiambphhkepekomh |
Официальный URL | https://chrome.google.com/webstore/detail/form-templates/nnlhpmkdmolhbkbnmiambphhkepekomh |
Описание | Helps developers to test web forms again and again with templates for generating dummy data (at the moment only german data). |
Размер файла | 51.8 KB |
Количество установок | 223 |
Текущая Версия | 1.0 |
Последнее Обновление | 2018-03-31 |
Дата публикации | 2018-03-31 |
Рейтинг | 3.48/5 Всего 27 оценок |
Разработчик | McSodbrenner |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | 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 } ] } |