URL Form Filler

Prepopulate a form from parameters in URL based on form-field ids

什麼是URL Form Filler?

URL Form Filler是由https://drupaltonight.com開發的Chrome擴展程式,該擴展的主要功能是“Prepopulate a form from parameters in URL based on form-field ids”。

擴展截圖

screenshot
screenshot
screenshot

下載URL Form Filler擴展crx文件

下載URL Form Filler擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Most of the order tracking websites and websites with search boxes are used frequently with the same values as the default values. But not every website supports pre-populating them with values from URLs. 

This tiny chrome Extension just does that. You can use either the id or the name attribute of the form-field in the url to pre-populate the values. 

An example url https://in.yahoo.com/?p=is%20yahoo%20news%20any%20good will populate the form element with either the ID or the name attribute equal to "p" with the value "is yahoo news any good"                    

擴展基本資訊

名稱 URL Form Filler URL Form Filler
ID gnojogfcdagpaailidoeiiepgdkehbdc
官方網址 https://chromewebstore.google.com/detail/url-form-filler/gnojogfcdagpaailidoeiiepgdkehbdc
簡介 Prepopulate a form from parameters in URL based on form-field ids
檔案大小 125 KB
安裝次數 300
目前版本 0.0.1
更新時間 2014-10-07
上架時間 2014-10-07
評分 5.00/5 共 2 次評分
開發者 https://drupaltonight.com
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "URL Form Filler",
    "short_name": "UFF",
    "version": "0.0.1",
    "manifest_version": 2,
    "default_locale": "en",
    "author": "Gokul N K",
    "description": "Prepopulate a form from parameters in URL based on form-field ids",
    "homepage_url": "http:\/\/www.gokulnk.blogspot.com",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "background": {
        "scripts": [
            "src\/bg\/background.js"
        ],
        "persistent": false
    },
    "page_action": {
        "default_icon": "icons\/icon20.png"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "js\/jquery\/jquery.js",
                "src\/inject\/inject.js"
            ],
            "run_at": "document_end"
        }
    ]
}