AMS Auto Fill

This is an chrome Extension which helps user to auto fill a form based on json input.

AMS Auto Fillคืออะไร?

AMS Auto Fill เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fusion SD และคุณลักษณะหลักของมันคือ "This is an chrome Extension which helps user to auto fill a form based on json input."

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

screenshot
screenshot

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

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

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

                                            

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

ชื่อ AMS Auto Fill AMS Auto Fill
ID goleodhjeigcnckfjlfgflcpohmmkapp
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/ams-auto-fill/goleodhjeigcnckfjlfgflcpohmmkapp
คำอธิบาย This is an chrome Extension which helps user to auto fill a form based on json input.
ขนาดไฟล์ 11.62 KB
จำนวนการติดตั้ง 174
เวอร์ชันปัจจุบัน 1.2.2
อัปเดตครั้งล่าสุด 2016-11-14
วันที่เผยแพร่ 2016-11-14
คะแนน 4.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Fusion SD
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "AMS Auto Fill",
    "short_name": "AMS",
    "description": "This is an chrome Extension which helps user to auto fill a form based on json input.",
    "version": "1.2.2",
    "offline_enabled": true,
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/rollsroycemotorcars.force.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "all_frames": false
        }
    ],
    "permissions": [
        "tabs",
        "clipboardRead",
        "clipboardWrite",
        "activeTab"
    ],
    "page_action": {
        "default_icon": {
            "16": "images\/icon16.png",
            "24": "images\/icon24.png",
            "32": "images\/icon32.png"
        },
        "default_title": "AMS Auto Fill",
        "default_popup": "popup.html"
    }
}