Dummy Form Filler

One click to populate HTML forms with dummy data. Works out of the box.

Dummy Form Fillerคืออะไร?

Dummy Form Filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ptomaszek และคุณลักษณะหลักของมันคือ "One click to populate HTML forms with dummy data. Works out of the box."

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

screenshot
screenshot
screenshot

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

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

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

                        Features:
- Lack of features
- Works out of the box
- Shortcut: Alt+Shift+D (can be changed in chrome://extensions/configureCommands)
- Configurable (basics)
- Perceives basic semantic hints (e.g. when a label contains 'age', 'year', 'phone' strings) and limitations (e.g. min, minlength)
- Click again to reset all the forms (though should keep the original values)
- Supported elements:
 - input: text, email, number, radio, checkbox, tel, password, date, url
 - select
 - textarea

Please note the logic of populating forms may not suite everyone, e.g. data that is already filled (existed before the page was loaded) will not be cleared and fitted with dummy data. If you think some behavior is terribly illogical, please give me a shout.


https://github.com/ptomaszek/dummy-form-filler                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Dummy Form Filler Dummy Form Filler
ID npghpiokpleaiakfmalkmhkcloahfnad
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/dummy-form-filler/npghpiokpleaiakfmalkmhkcloahfnad
คำอธิบาย One click to populate HTML forms with dummy data. Works out of the box.
ขนาดไฟล์ 99.78 KB
จำนวนการติดตั้ง 737
เวอร์ชันปัจจุบัน 1.5.0
อัปเดตครั้งล่าสุด 2024-02-05
วันที่เผยแพร่ 2020-05-23
คะแนน 3.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา ptomaszek
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ptomaszek/dummy-form-filler
URL หน้าช่วยเหลือ https://github.com/ptomaszek/dummy-form-filler
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Dummy Form Filler",
    "short_name": "Dummy FF",
    "description": "One click to populate HTML forms with dummy data. Works out of the box.",
    "version": "1.5.0",
    "homepage_url": "https:\/\/github.com\/ptomaszek\/dummy-form-filler",
    "icons": {
        "48": "icons\/seahorse_48.png",
        "64": "icons\/seahorse_64.png",
        "96": "icons\/seahorse_96.png",
        "128": "icons\/seahorse_128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "action": {
        "default_icon": {
            "48": "icons\/seahorse_48.png",
            "64": "icons\/seahorse_64.png",
            "96": "icons\/seahorse_96.png",
            "128": "icons\/seahorse_128.png"
        },
        "default_title": "Dummy Form Filler"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*\/*.xml",
                "file:\/\/\/*\/*.xml"
            ],
            "js": [
                "options\/default-options.js",
                "js-ext\/chance.min.js",
                "js\/dummy-options.js",
                "js\/dummy-logger.js",
                "js\/dummy-augur.js",
                "js\/dummy-limits.js",
                "js\/dummy-generator.js",
                "js\/dummy-engine.js",
                "js\/main.js"
            ]
        }
    ],
    "options_ui": {
        "page": "options\/options.html"
    },
    "commands": {
        "_execute_action": {
            "suggested_key": {
                "default": "Alt+Shift+D"
            },
            "description": "Run Dummy, run!"
        }
    }
}