Google Forms Auto Filler
Automatically fills google forms.
Что такое Google Forms Auto Filler?
Google Forms Auto Filler - это расширение Chrome, разработанное Murat Serhat Alperen, и его основная функция - "Automatically fills google forms.".
Снимки экрана расширения
Скачать файл CRX расширения Google Forms Auto Filler
Скачайте файлы расширений Google Forms Auto Filler в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This add-on enters text into input fields of Google Forms by predefined values automatically. For example if you set Name as John, each input fields of Google Forms whose title is Name gets John value when the page is loaded. IMPORTANT Note: Because of the Google Forms bot filling blocking, you must click and press space for each form field. (Thus Google will think you have filled out) You can report bugs or make feature requests on https://github.com/muratalperen/GoogleFormsAutoFiller
Основная информация о расширении
Название | Google Forms Auto Filler |
ID | jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Официальный URL | https://chromewebstore.google.com/detail/google-forms-auto-filler/jdjlkmjjmpdbmejkicfjokkgifdkpjek |
Описание | Automatically fills google forms. |
Размер файла | 124 KB |
Количество установок | 10,000 |
Текущая Версия | 0.2.3 |
Последнее Обновление | 2022-03-15 |
Дата публикации | 2021-01-28 |
Рейтинг | 3.27/5 Всего 11 оценок |
Разработчик | Murat Serhat Alperen |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | https://github.com/muratalperen/GoogleFormsAutoFiller |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Google Forms Auto Filler", "version": "0.2.3", "description": "Automatically fills google forms.", "homepage_url": "https:\/\/github.com\/muratalperen\/GoogleFormsAutoFiller", "browser_specific_settings": { "gecko": { "id": "googleFormsAutoFiller@muratalperen" } }, "icons": { "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png" }, "permissions": [ "activeTab", "storage" ], "browser_action": { "default_icon": "icons\/icon-32.png", "default_title": "Google Forms Auto Filler", "default_popup": "fillMenu.html" }, "content_scripts": [ { "matches": [ "*:\/\/docs.google.com\/forms\/*" ], "js": [ "GoogleForm.js" ] } ] } |