Form Troubleshooter

Find and fix common form problems.

Form Troubleshooter क्या है?

Form Troubleshooter Sam Dutton द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Find and fix common form problems."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Form Troubleshooter एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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"
    }
}