Form Troubleshooter
Find and fix common form problems.
Was ist Form Troubleshooter?
Form Troubleshooter ist eine Chrome-Erweiterung, die von Sam Dutton entwickelt wurde, und ihr Hauptmerkmal ist "Find and fix common form problems.".
Erweiterungsscreenshots
Form Troubleshooter-Erweiterungs-CRX-Datei herunterladen
Laden Sie Form Troubleshooter-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        Audit form usage, and check for common problems: invalid attribute or element usage, missing attributes, autocomplete errors, and other types of problematic form code.                     Grundlegende Informationen zur Erweiterung
| Name |   |  
| ID | lpjhcgjbicfdoijennopbjooigfipfjh | 
| Offizielle URL | https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh | 
| Beschreibung | Find and fix common form problems. | 
| Dateigröße | 409 KB | 
| Installationsanzahl | 661 | 
| Aktuelle Version | 1.3.2 | 
| Letztes Update | 2023-06-09 | 
| Veröffentlichungsdatum | 2021-09-15 | 
| Entwickler | Sam Dutton | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://github.com/GoogleChromeLabs/form-troubleshooter | 
| Hilfeseite URL | https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new | 
| Unterstützte Sprachen | 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"
    }
}  |  |