Input Filler
Fills all inputs on a page with a specific value
Что такое Input Filler?
Input Filler - это расширение Chrome, разработанное Aaron Didner, и его основная функция - "Fills all inputs on a page with a specific value".
Снимки экрана расширения
Скачать файл CRX расширения Input Filler
Скачайте файлы расширений Input Filler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This chrome extension takes all text input boxes on a page and fills them with a user specified value. The benefit is that if a user were doing data entry and many text input's on the page all had some sort of value the chrome extension could populate all of them at once rather than having to do all of them by hand.
Основная информация о расширении
Название | Input Filler |
ID | jenbiknnohffkkbaabolppehhfaemdgn |
Официальный URL | https://chromewebstore.google.com/detail/input-filler/jenbiknnohffkkbaabolppehhfaemdgn |
Описание | Fills all inputs on a page with a specific value |
Размер файла | 11.69 KB |
Количество установок | 96 |
Текущая Версия | 1.1.1 |
Последнее Обновление | 2022-02-03 |
Дата публикации | 2022-01-12 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | Aaron Didner |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/adidner/input-filler |
URL страницы политики конфиденциальности | https://github.com/adidner/input-filler/blob/main/privacy_policy.md |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Input Filler", "description": "Fills all inputs on a page with a specific value", "version": "1.1.1", "permissions": [ "activeTab", "scripting", "storage" ], "action": { "default_popup": "popup\/popup.html", "default_icons": { "16": "chrome-extension-logos\/logo-2.2-16x16.png", "32": "chrome-extension-logos\/logo-2.2-32x32.png", "48": "chrome-extension-logos\/logo-2.2-48x48.png", "128": "chrome-extension-logos\/logo-2.2-128x128.png" } }, "icons": { "16": "chrome-extension-logos\/logo-2.2-16x16.png", "32": "chrome-extension-logos\/logo-2.2-32x32.png", "48": "chrome-extension-logos\/logo-2.2-48x48.png", "128": "chrome-extension-logos\/logo-2.2-128x128.png" } } |