Autofill Checker

Check what the chrome autofill actually filled

Autofill Checkerคืออะไร?

Autofill Checker เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://bramas.fr และคุณลักษณะหลักของมันคือ "Check what the chrome autofill actually filled"

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

screenshot
screenshot

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

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

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

                                            

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

ชื่อ Autofill Checker Autofill Checker
ID nfdenjdodgbjbcbocechcbkhncakpieb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/autofill-checker/nfdenjdodgbjbcbocechcbkhncakpieb
คำอธิบาย Check what the chrome autofill actually filled
ขนาดไฟล์ 15.19 KB
จำนวนการติดตั้ง 143
เวอร์ชันปัจจุบัน 1.2
อัปเดตครั้งล่าสุด 2017-01-07
วันที่เผยแพร่ 2017-01-07
คะแนน 3.67/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://bramas.fr
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/Bramas/autofill-checker
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Autofill Checker",
    "description": "Check what the chrome autofill actually filled",
    "version": "1.2",
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "background": {
        "persistent": false,
        "scripts": [
            "bg.js"
        ]
    },
    "page_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab",
        "background"
    ],
    "icons": {
        "192": "icon.png"
    }
}