Form Troubleshooter

Find and fix common form problems.

Co to jest Form Troubleshooter?

Form Troubleshooter to rozszerzenie Chrome opracowane przez Sam Dutton, a jego główną funkcją jest „Find and fix common form problems.”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Form Troubleshooter

Pobierz pliki rozszerzeń Form Troubleshooter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

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

Podstawowe informacje o rozszerzeniu

Nazwa Form Troubleshooter Form Troubleshooter
ID lpjhcgjbicfdoijennopbjooigfipfjh
Oficjalny URL https://chromewebstore.google.com/detail/form-troubleshooter/lpjhcgjbicfdoijennopbjooigfipfjh
Opis Find and fix common form problems.
Rozmiar pliku 409 KB
Liczba instalacji 661
Aktualna Wersja 1.3.2
Ostatnia Aktualizacja 2023-06-09
Data Publikacji 2021-09-15
Deweloper Sam Dutton
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/GoogleChromeLabs/form-troubleshooter
Adres URL Strony Pomocy https://github.com/GoogleChromeLabs/form-troubleshooter/issues/new
Obsługiwane Języki 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"
    }
}