Form Troubleshooter
Find and fix common form problems.
Что такое Form Troubleshooter?
Form Troubleshooter - это расширение Chrome, разработанное Sam Dutton, и его основная функция - "Find and fix common form problems.".
Снимки экрана расширения
Скачать файл CRX расширения Form Troubleshooter
Скачайте файлы расширений Form Troubleshooter в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code. Основная информация о расширении
| Название | |
| ID | lpjhcgjbicfdoijennopbjooigfipfjh |
| Официальный URL | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
| Описание | Find and fix common form problems. |
| Размер файла | 409 KB |
| Количество установок | 661 |
| Текущая Версия | 1.3.2 |
| Последнее Обновление | 2023-06-09 |
| Дата публикации | 2021-09-15 |
| Разработчик | Sam Dutton |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/GoogleChromeLabs/form-troubleshooter |
| URL страницы помощи | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Form Troubleshooter",
"description": "Find and fix common form problems.",
"version": "1.3.2",
"manifest_version": 3,
"background": {
"service_worker": "background.js"
},
"content_scripts": [
{
"matches": [
"*:\/\/*\/*"
],
"js": [
"lib\/content-script.js"
],
"css": [
"css\/highlight.css"
],
"all_frames": true
}
],
"web_accessible_resources": [
{
"resources": [
"css\/highlight.css"
],
"matches": [
"*:\/\/*\/*"
]
}
],
"permissions": [
"storage"
],
"action": {
"default_popup": "index.html",
"default_icon": {
"32": "\/images\/icons\/icon32.png",
"48": "\/images\/icons\/icon48.png",
"128": "\/images\/icons\/icon128.png"
}
},
"icons": {
"32": "\/images\/icons\/icon32.png",
"48": "\/images\/icons\/icon48.png",
"128": "\/images\/icons\/icon128.png"
}
} | |