YC Auto Form

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

YC Auto Form là gì?

YC Auto Form là một tiện ích mở rộng Chrome được phát triển bởi Tom Gabrysiak, và tính năng chính của nó là "Populate form fields with one click. This is BETA version.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng YC Auto Form

Tải xuống các tệp mở rộng YC Auto Form dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên YC Auto Form YC Auto Form
ID mafmchjmbokigppgnebohdljnpenlcbb
URL Chính Thức https://chromewebstore.google.com/detail/yc-auto-form/mafmchjmbokigppgnebohdljnpenlcbb
Mô tả Populate form fields with one click. This is BETA version.
Kích Thước Tệp 565 KB
Số Lần Cài Đặt 429
Phiên Bản Hiện Tại 0.0.9
Cập Nhật Lần Cuối 2013-11-21
Ngày Phát Hành 2013-11-21
Đánh Giá 4.60/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Tom Gabrysiak
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}