Form Troubleshooter
Find and fix common form problems.
Vad är Form Troubleshooter?
Form Troubleshooter är en Chrome-tillägg utvecklad av Sam Dutton, och dess huvudfunktion är "Find and fix common form problems.".
Tilläggsskärmbilder
Ladda ner Form Troubleshooter-förlängningens CRX-fil
Ladda ner Form Troubleshooter-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.
Grundläggande Information om Tillägg
Namn | Form Troubleshooter |
ID | lpjhcgjbicfdoijennopbjooigfipfjh |
Officiell webbadress | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
Beskrivning | Find and fix common form problems. |
Filstorlek | 409 KB |
Antal Installationer | 661 |
Aktuell Version | 1.3.2 |
Senast Uppdaterad | 2023-06-09 |
Publiceringsdatum | 2021-09-15 |
Utvecklare | Sam Dutton |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/GoogleChromeLabs/form-troubleshooter |
Hjälpsida URL | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
Stödda Språk | 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" } } |