YC Auto Form

Populate form fields with one click. This is BETA version.

YC Auto Formคืออะไร?

YC Auto Form เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Tom Gabrysiak และคุณลักษณะหลักของมันคือ "Populate form fields with one click. This is BETA version."

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

screenshot

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

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

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

                        This extension allows you to auto fill forms with one click of button.  Forms are filled with dummy data.

Add your own custom field types in the options menu.

UPDATE::
v.0.0.2 Fixed Permissions
v.0.0.5 Fixed Case Selectors
v.0.0.6 Added constant field options
v.0.0.9 Added custom fields in options menu                    

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

ชื่อ YC Auto Form YC Auto Form
ID mafmchjmbokigppgnebohdljnpenlcbb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/yc-auto-form/mafmchjmbokigppgnebohdljnpenlcbb
คำอธิบาย Populate form fields with one click. This is BETA version.
ขนาดไฟล์ 565 KB
จำนวนการติดตั้ง 429
เวอร์ชันปัจจุบัน 0.0.9
อัปเดตครั้งล่าสุด 2013-11-21
วันที่เผยแพร่ 2013-11-21
คะแนน 4.60/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา Tom Gabrysiak
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YC Auto Form",
    "version": "0.0.9",
    "manifest_version": 2,
    "author": "Tom Gabrysiak",
    "description": "Populate form fields with one click.  This is BETA version.",
    "homepage_url": "http:\/\/tomgabrysiak.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery.js",
                "src\/options_custom\/lib\/angular.js",
                "src\/options_custom\/lib\/store.js",
                "src\/options_custom\/js\/i18n.js",
                "src\/options_custom\/lib\/mootools-core.js"
            ],
            "run_at": "document_end",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "jquery.js",
        "index.js"
    ],
    "options_page": "src\/options_custom\/index.html",
    "browser_action": {
        "default_icon": "icons\/icon19.png",
        "default_title": "browser action demo"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "tabs",
        "storage"
    ]
}