URL Form Filler

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

URL Form Filler là gì?

URL Form Filler là một tiện ích mở rộng Chrome được phát triển bởi https://drupaltonight.com, và tính năng chính của nó là "Prepopulate a form from parameters in URL based on form-field ids".

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

screenshot
screenshot
screenshot

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

Tải xuống các tệp mở rộng URL Form Filler 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

                        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"                    

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

Tên URL Form Filler URL Form Filler
ID gnojogfcdagpaailidoeiiepgdkehbdc
URL Chính Thức https://chromewebstore.google.com/detail/url-form-filler/gnojogfcdagpaailidoeiiepgdkehbdc
Mô tả Prepopulate a form from parameters in URL based on form-field ids
Kích Thước Tệp 125 KB
Số Lần Cài Đặt 300
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2014-10-07
Ngày Phát Hành 2014-10-07
Đánh Giá 5.00/5 Tổng số 2 Đánh Giá
Nhà Phát Triển https://drupaltonight.com
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}