Fake Filler

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

Fake Fillerคืออะไร?

Fake Filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://fakefiller.com และคุณลักษณะหลักของมันคือ "A form filler that fills all inputs on a page with fake/dummy data."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fake Filler

ดาวน์โหลดไฟล์ส่วนขยาย Fake Filler ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
    }
}