Form filler

Autosaves the Form you are working on from Time to Time, automatically.

Form fillerคืออะไร?

Form filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Roman และคุณลักษณะหลักของมันคือ "Autosaves the Form you are working on from Time to Time, automatically."

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

screenshot
screenshot

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

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

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

                                            

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

ชื่อ Form filler Form filler
ID hlloohcadnpmnhcadiednjlajnmbmigb
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/form-filler/hlloohcadnpmnhcadiednjlajnmbmigb
คำอธิบาย Autosaves the Form you are working on from Time to Time, automatically.
ขนาดไฟล์ 16.91 KB
จำนวนการติดตั้ง 169
เวอร์ชันปัจจุบัน 0.0.5
อัปเดตครั้งล่าสุด 2014-12-31
วันที่เผยแพร่ 2014-12-31
คะแนน 1.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา Roman
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Form filler",
    "version": "0.0.5",
    "manifest_version": 2,
    "description": "Autosaves the Form you are working on from Time to Time, automatically.",
    "icons": {
        "16": "images\/icon-16.png",
        "128": "images\/icon-128.png"
    },
    "default_locale": "en",
    "background": {
        "scripts": [
            "scripts\/background.js"
        ]
    },
    "page_action": {
        "default_icon": {
            "19": "images\/icon-19.png",
            "38": "images\/icon-38.png"
        },
        "default_title": "form filler",
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "scripts\/page.js"
            ],
            "css": [
                "styles\/animate.css",
                "styles\/icon.css",
                "styles\/input.css"
            ],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "images\/icon-38.png",
        "images\/delete.png"
    ]
}