Google Forms Autocomplete
Extension that enables the autocomplete system on Google Forms
Что такое Google Forms Autocomplete?
Google Forms Autocomplete - это расширение Chrome, разработанное Heitor Eleutério, и его основная функция - "Extension that enables the autocomplete system on Google Forms".
Снимки экрана расширения
Скачать файл CRX расширения Google Forms Autocomplete
Скачайте файлы расширений Google Forms Autocomplete в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Optimize your forms and have a more productive work cycle with a fully customizable forms autocomplete. Основная информация о расширении
| Название | |
| ID | depehdamecodbkkcofaplnnbcoagijdp |
| Официальный URL | https://chromewebstore.google.com/detail/google-forms-autocomplete/depehdamecodbkkcofaplnnbcoagijdp |
| Описание | Extension that enables the autocomplete system on Google Forms |
| Размер файла | 36.46 KB |
| Количество установок | 326 |
| Текущая Версия | 1.0.0.0 |
| Последнее Обновление | 2023-04-02 |
| Дата публикации | 2023-04-02 |
| Рейтинг | 5.00/5 Всего 1 оценок |
| Разработчик | Heitor Eleutério |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Google Forms Autocomplete",
"description": "Extension that enables the autocomplete system on Google Forms",
"version": "1.0.0.0",
"icons": {
"16": "\/images\/google-forms-16.png",
"48": "\/images\/google-forms-48.png",
"128": "\/images\/google-forms-128.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/docs.google.com\/forms\/*"
],
"js": [
"\/src\/script.js"
],
"css": [
"\/src\/style.css"
]
}
],
"web_accessible_resources": [
{
"matches": [
"https:\/\/docs.google.com\/*"
],
"resources": [
"\/src\/classes.js"
]
}
],
"action": {
"default_popup": "\/src\/page\/index.html",
"default_title": "Google Forms Autocomplete",
"default_icon": {
"16": "\/images\/google-forms-16.png",
"48": "\/images\/google-forms-48.png",
"128": "\/images\/google-forms-128.png"
}
},
"permissions": [
"storage"
]
} | |