Form Troubleshooter

Find and fix common form problems.

What is Form Troubleshooter?

Form Troubleshooter is a Chrome extension developed by Sam Dutton, and its main feature is "Find and fix common form problems.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Form Troubleshooter Extension CRX File

Download Form Troubleshooter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.                    

Extension Basic Information

Name Form Troubleshooter Form Troubleshooter
ID lpjhcgjbicfdoijennopbjooigfipfjh
Official URL https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh
Description Find and fix common form problems.
File Size 409 KB
Installation Count 661
Current Version 1.3.2
Last Updated 2023-06-09
Publish Date 2021-09-15
Developer Sam Dutton
Email [email protected]
Payment Type free
Extension Website https://github.com/GoogleChromeLabs/form-troubleshooter
Help Page URL https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new
Supported Languages 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"
    }
}