Lorem Fill

A webpage form filler that populates context specific random test data into forms elements.

Lorem Fillคืออะไร?

Lorem Fill เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 42! และคุณลักษณะหลักของมันคือ "A webpage form filler that populates context specific random test data into forms elements."

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        An extension to fill random test data in forms. Test data is filled while being context sensitive. This is helpful when you need to test your application involving forms and ideally would like real-world data when submitting forms to your application.

Source code: https://github.com/loremfill/loremfill-chrome

Release 1.15
+ PR #5: @ArroWsGM

Release 1.14
+ Moving codebase to ES6
+ PR #3 : @disrupticons

Release 1.13
+ Accessing all input types

Release 1.12
+ Added ngReflect attribute reader

Release 1.11
+ Added year handler
+ Added phone number / cell phone number handler
+ Prepend protocol to domain handler

Release 1.10
+ Made events invoked by Simulant.js as default

Release 1.9
+ Added option to configure if the underlying app is a react + material UI based app
+ Handles correct events before and after filling values

Release 1.8
+ Fixed bug which caused app to break since bootstrap.js included in extension was conflicting with the extension in your app.

Release 1.7
+ Changes to settings page
+ New app icon

Release 1.6
+ Upgrade chance.js to v0.8.
+ Setting default value to .word instead of .sentence
+ Edited extension description
+ Removed footer label
+ organization as a key for CompanyMatcher

Release 1.5
+ Firing blur event along with change for angular apps which bind data on blur

Release 1.4
+ Preference to configure a fixed test CC number instead of generating randomly
+ Form filler now uses [id] attribute strategy for filling text values

Release 1.3
+ Fixed issue that was causing loremfill to populate tabs on multiple open windows when used with k/b shortcut

Release 1.2
+ Performance improvements

Release 1.1
+ Filling values to input elements trigger a change event post filling. Fixes issue with Angular/Backbone apps that rely on change events for binding data.

Release 1.0
+ Supporting angular applications using ng-model attribute
+ Supporting [type='url'] fields                    

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

ชื่อ Lorem Fill Lorem Fill
ID jfjnfhfeibkcokofbeipmehclfdojpaa
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/lorem-fill/jfjnfhfeibkcokofbeipmehclfdojpaa
คำอธิบาย A webpage form filler that populates context specific random test data into forms elements.
ขนาดไฟล์ 243 KB
จำนวนการติดตั้ง 705
เวอร์ชันปัจจุบัน 1.15
อัปเดตครั้งล่าสุด 2020-11-15
วันที่เผยแพร่ 2020-11-15
คะแนน 4.50/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา 42!
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/loremfill/loremfill-chrome
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "author": "42!",
    "background": {
        "persistent": true,
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_icon": "icons\/icon128.png"
    },
    "commands": {
        "trigger_fill_all_forms": {
            "description": "Lorem Fill this page",
            "suggested_key": {
                "default": "Ctrl+Shift+1",
                "mac": "Command+Shift+1"
            }
        }
    },
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "js\/libs\/jquery-1.11.3.min.js",
                "js\/libs\/underscore-min.js",
                "js\/libs\/backbone-min.js",
                "js\/libs\/string.js",
                "js\/libs\/chance.min.js",
                "js\/libs\/simulant.umd.js",
                "js\/models\/populate_manager.js",
                "js\/models\/element.js",
                "js\/models\/elements.js",
                "js\/filler.js",
                "js\/models\/matchers\/null.js",
                "js\/models\/matchers\/person.js",
                "js\/models\/matchers\/web.js",
                "js\/models\/matchers\/payment.js",
                "js\/models\/matchers\/location.js",
                "js\/models\/matchers\/number.js",
                "js\/models\/matchers\/factory.js",
                "js\/models\/store.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "A webpage form filler that populates context specific random test data into forms elements.",
    "icons": {
        "128": "icons\/icon128.png",
        "48": "icons\/icon48.png",
        "16": "icons\/icon16.png"
    },
    "incognito": "split",
    "manifest_version": 2,
    "name": "Lorem Fill",
    "offline_enabled": true,
    "options_page": "options.html",
    "permissions": [
        "activeTab",
        "contextMenus",
        "storage"
    ],
    "short_name": "LoremFill",
    "version": "1.15"
}