Web Developer Form Filler

This extension is used by developers to make it easy to fill forms

Web Developer Form Filler란 무엇입니까?

Web Developer Form Filler은(는) formfiller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension is used by developers to make it easy to fill forms"입니다.

확장 프로그램 스크린샷

screenshot

Web Developer Form Filler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Еxtension allows to automatically fill forms for the purpose of testing. You can store multiple presets of values for any paga separately and trigger them using a hotkey                    

확장 프로그램 기본 정보

이름 Web Developer Form Filler Web Developer Form Filler
ID gbagmkohmhcjgbepncmehejaljoclpil
공식 URL https://chromewebstore.google.com/detail/web-developer-form-filler/gbagmkohmhcjgbepncmehejaljoclpil
설명 This extension is used by developers to make it easy to fill forms
파일 크기 109 KB
설치 횟수 33,293
현재 버전 1.0.13.1
최근 업데이트 2021-07-29
출시 날짜 2017-03-16
평점 4.30/5 총 149 개의 평점
개발자 formfiller
이메일 [email protected]
결제 유형 free
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "content_scripts": [
        {
            "js": [
                "javascripts\/jquery-1.9.1.min.js",
                "javascripts\/deserialize.js",
                "javascripts\/content_script.js",
                "javascripts\/mousetrap.min.js"
            ],
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                "file:\/\/\/*"
            ],
            "run_at": "document_start"
        }
    ],
    "name": "Web Developer Form Filler",
    "version": "1.0.13.1",
    "icons": {
        "16": "images\/16.png",
        "48": "images\/48.png",
        "128": "images\/128.png"
    },
    "description": "This extension is used by developers to make it easy to fill forms",
    "browser_action": {
        "default_icon": "images\/48.png",
        "default_title": "Web Developer Form Filler",
        "default_popup": "popup.html"
    },
    "background": {
        "page": "background.html"
    },
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "manifest_version": 2
}