Form Troubleshooter
Find and fix common form problems.
Form Troubleshooter là gì?
Form Troubleshooter là một tiện ích mở rộng Chrome được phát triển bởi Sam Dutton, và tính năng chính của nó là "Find and fix common form problems.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Form Troubleshooter
Tải xuống các tệp mở rộng Form Troubleshooter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Form Troubleshooter |
ID | lpjhcgjbicfdoijennopbjooigfipfjh |
URL Chính Thức | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
Mô tả | Find and fix common form problems. |
Kích Thước Tệp | 409 KB |
Số Lần Cài Đặt | 661 |
Phiên Bản Hiện Tại | 1.3.2 |
Cập Nhật Lần Cuối | 2023-06-09 |
Ngày Phát Hành | 2021-09-15 |
Nhà Phát Triển | Sam Dutton |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/GoogleChromeLabs/form-troubleshooter |
URL Trang Trợ Giúp | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
Ngôn Ngữ Được Hỗ Trợ | 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" } } |