Form Troubleshooter

Find and fix common form problems.

Form Troubleshooterとは何ですか?

Form TroubleshooterはSam Duttonによって開発されたChromeの拡張機能で、その主な機能は「Find and fix common form problems.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot

Form Troubleshooter拡張機能のCRXファイルをダウンロード

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
Eメール [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"
    }
}