Fake Filler

A form filler that fills all inputs on a page with fake/dummy data.

Fake Filler란 무엇입니까?

Fake Filler은(는) https://fakefiller.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A form filler that fills all inputs on a page with fake/dummy data."입니다.

확장 프로그램 스크린샷

screenshot

Fake Filler 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Fake Filler is THE form filler to fill all input fields on a page with randomly generated fake data. This productivity boosting extension is a must for developers and testers who work with forms as it eliminates the need for manually entering values in fields.

• Fill all inputs with randomly generated names, emails, phone numbers, etc.

• Sensible defaults to allow you to start using the extension without any configuration.

• Powerful customization using custom fields.

• Ignores CAPTCHA, hidden, disabled and readonly fields.                    

확장 프로그램 기본 정보

이름 Fake Filler Fake Filler
ID bnjjngeaknajbdcgpfkgnonkmififhfo
공식 URL https://chromewebstore.google.com/detail/fake-filler/bnjjngeaknajbdcgpfkgnonkmififhfo
설명 A form filler that fills all inputs on a page with fake/dummy data.
파일 크기 675 KB
설치 횟수 308,037
현재 버전 3.3.1
최근 업데이트 2020-12-14
출시 날짜 2020-06-17
평점 4.44/5 총 724 개의 평점
개발자 https://fakefiller.com
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://fakefiller.com
도움말 페이지 URL https://github.com/FakeFiller/fake-filler-extension/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "__MSG_extensionName__",
    "short_name": "__MSG_extensionName_short__",
    "version": "3.3.1",
    "description": "__MSG_extensionDescription__",
    "default_locale": "en",
    "icons": {
        "16": "images\/icon-16.png",
        "32": "images\/icon-32.png",
        "48": "images\/icon-48.png",
        "64": "images\/icon-64.png",
        "96": "images\/icon-96.png",
        "128": "images\/icon-128.png"
    },
    "permissions": [
        "contextMenus",
        "activeTab",
        "",
        "storage"
    ],
    "browser_action": {
        "default_icon": {
            "16": "images\/icon-16.png",
            "32": "images\/icon-32.png",
            "48": "images\/icon-48.png",
            "64": "images\/icon-64.png",
            "96": "images\/icon-96.png",
            "128": "images\/icon-128.png"
        },
        "default_title": "__MSG_browserActionTitle__"
    },
    "commands": {
        "fill_all_inputs": {
            "description": "__MSG_commands_fillAllInputs__",
            "suggested_key": {
                "default": "Ctrl+Shift+F"
            }
        },
        "fill_this_form": {
            "description": "__MSG_commands_fillThisForm__"
        },
        "fill_this_input": {
            "description": "__MSG_commands_fillThisInput__"
        }
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "build\/content-script.js"
            ],
            "all_frames": true
        }
    ],
    "background": {
        "scripts": [
            "build\/background-script.js"
        ],
        "persistent": false
    },
    "options_ui": {
        "page": "options.html",
        "open_in_tab": true
    }
}