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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
        }
    ]
}