Form Troubleshooter

Find and fix common form problems.

Τι είναι το Form Troubleshooter;

Το Form Troubleshooter είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Sam Dutton, και η κύρια λειτουργία του είναι "Find and fix common form problems.".

Στιγμιότυπα Επέκτασης

screenshot
screenshot
screenshot

Λήψη αρχείου CRX της επέκτασης Form Troubleshooter

Λήψη αρχείων επέκτασης Form Troubleshooter σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

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

Βασικές Πληροφορίες Επέκτασης

Όνομα Form Troubleshooter Form Troubleshooter
ID lpjhcgjbicfdoijennopbjooigfipfjh
Επίσημο URL https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh
Περιγραφή Find and fix common form problems.
Μέγεθος Αρχείου 409 KB
Αριθμός Εγκαταστάσεων 661
Τρέχουσα Έκδοση 1.3.2
Τελευταία Ενημέρωση 2023-06-09
Ημερομηνία Δημοσίευσης 2021-09-15
Προγραμματιστής Sam Dutton
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://github.com/GoogleChromeLabs/form-troubleshooter
Διεύθυνση URL της Σελίδας Βοήθειας https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new
Υποστηριζόμενες Γλώσσες 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"
    }
}