YC Auto Form

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

什麼是YC Auto Form?

YC Auto Form是由Tom Gabrysiak開發的Chrome擴展程式,該擴展的主要功能是“Populate form fields with one click. This is BETA version.”。

擴展截圖

screenshot

下載YC Auto Form擴展crx文件

下載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
官方網址 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"
    ]
}