Fill form get

Fill form with get parameters

Fill form getคืออะไร?

Fill form get เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://digitalgg.com และคุณลักษณะหลักของมันคือ "Fill form with get parameters"

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

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

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

                        Fill form with get parameters from url.
For example: website (example.com) contains form with two fields (name, surname) and we know that input field name is "name" and "surname", so we can set get parameters to fill form.
For example: if url will be example.com?name=test, the form input with name "name" will be filled with value test.                    

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

ชื่อ Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
คำอธิบาย Fill form with get parameters
ขนาดไฟล์ 32.72 KB
จำนวนการติดตั้ง 22
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2016-05-07
วันที่เผยแพร่ 2016-05-07
ผู้พัฒนา https://digitalgg.com
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fill form get",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Fill form with get parameters",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ]
}