Fill form get
Fill form with get parameters
Что такое Fill form get?
Fill form get - это расширение Chrome, разработанное https://digitalgg.com, и его основная функция - "Fill form with get parameters".
Скачать файл CRX расширения Fill form get
Скачайте файлы расширений Fill form get в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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.
Основная информация о расширении
Название | |
ID | hlpbbilciikoohloghfnlofmgekenkpl |
Официальный URL | https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl |
Описание | Fill form with get parameters |
Размер файла | 32.72 KB |
Количество установок | 22 |
Текущая Версия | 1.0 |
Последнее Обновление | 2016-05-07 |
Дата публикации | 2016-05-07 |
Разработчик | https://digitalgg.com |
Тип оплаты | free |
Поддерживаемые языки | 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:\/\/*\/*" ] } |