Form Troubleshooter
Find and fix common form problems.
Wat is Form Troubleshooter?
Form Troubleshooter is een Chrome-extensie ontwikkeld door Sam Dutton, en de belangrijkste functie is "Find and fix common form problems.".
Extensie Screenshots
Download het CRX-bestand van de extensie Form Troubleshooter
Download Form Troubleshooter-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.
Basisinformatie over de Extensie
Naam | Form Troubleshooter |
ID | lpjhcgjbicfdoijennopbjooigfipfjh |
Officiële URL | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh |
Beschrijving | Find and fix common form problems. |
Bestandsgrootte | 409 KB |
Aantal Installaties | 661 |
Huidige Versie | 1.3.2 |
Laatst Bijgewerkt | 2023-06-09 |
Publicatiedatum | 2021-09-15 |
Ontwikkelaar | Sam Dutton |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/GoogleChromeLabs/form-troubleshooter |
Help Pagina-URL | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new |
Ondersteunde Talen | 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" } } |