Form Troubleshooter
Find and fix common form problems.
什么是Form Troubleshooter?
Form Troubleshooter是由Sam Dutton开发的Chrome扩展程序,该扩展的主要功能是“Find and fix common form problems.”。
扩展截图
下载Form Troubleshooter扩展crx文件
下载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"
}
} | |