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