Form Troubleshooter

Find and fix common form problems.

Apa itu Form Troubleshooter?

Form Troubleshooter adalah ekstensi Chrome yang dikembangkan oleh Sam Dutton, dan fitur utamanya adalah "Find and fix common form problems.".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Form Troubleshooter

Unduh file ekstensi Form Troubleshooter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Form Troubleshooter Form Troubleshooter
ID lpjhcgjbicfdoijennopbjooigfipfjh
URL Resmi https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh
Deskripsi Find and fix common form problems.
Ukuran File 409 KB
Jumlah Instalasi 661
Versi Saat Ini 1.3.2
Terakhir Diperbarui 2023-06-09
Tanggal Publikasi 2021-09-15
Pengembang Sam Dutton
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/GoogleChromeLabs/form-troubleshooter
URL Halaman Bantuan https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new
Bahasa yang Didukung 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"
    }
}