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.
擴展基本資訊
名稱 | Form Troubleshooter |
ID | lpjhcgjbicfdoijennopbjooigfipfjh |
官方網址 | 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" } } |