Autofill

Automatically enter form (text, select, radio)

Autofillคืออะไร?

Autofill เป็นส่วนขยายของ Chrome ที่พัฒนาโดย t4y3 และคุณลักษณะหลักของมันคือ "Automatically enter form (text, select, radio)"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Autofill

ดาวน์โหลดไฟล์ส่วนขยาย Autofill ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                                            

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Autofill Autofill
ID eahekcjalfgflphdfogkbeajfjbljhmp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/autofill/eahekcjalfgflphdfogkbeajfjbljhmp
คำอธิบาย Automatically enter form (text, select, radio)
ขนาดไฟล์ 61.29 KB
จำนวนการติดตั้ง 219
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2019-03-08
วันที่เผยแพร่ 2019-03-08
ผู้พัฒนา t4y3
ประเภทการชำระเงิน free
ภาษาที่รองรับ ja
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autofill",
    "description": "Automatically enter form (text, select, radio)",
    "version": "1.0",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "icons\/icon19.png"
        },
        "default_title": "Autofill",
        "default_popup": ".\/build\/index.html"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "https:\/\/*\/*",
        "http:\/\/*\/*",
        "storage"
    ]
}