Fill form get

Fill form with get parameters

Fill form get란 무엇입니까?

Fill form get은(는) https://digitalgg.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Fill form with get parameters"입니다.

Fill form get 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Fill form with get parameters from url.
For example: website (example.com) contains form with two fields (name, surname) and we know that input field name is "name" and "surname", so we can set get parameters to fill form.
For example: if url will be example.com?name=test, the form input with name "name" will be filled with value test.                    

확장 프로그램 기본 정보

이름 Fill form get Fill form get
ID hlpbbilciikoohloghfnlofmgekenkpl
공식 URL https://chromewebstore.google.com/detail/fill-form-get/hlpbbilciikoohloghfnlofmgekenkpl
설명 Fill form with get parameters
파일 크기 32.72 KB
설치 횟수 22
현재 버전 1.0
최근 업데이트 2016-05-07
출시 날짜 2016-05-07
개발자 https://digitalgg.com
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fill form get",
    "version": "1.0",
    "manifest_version": 2,
    "description": "Fill form with get parameters",
    "content_scripts": [
        {
            "js": [
                "jquery.min.js",
                "content_script.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ]
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/*\/*"
    ]
}