Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Oracle APEX Form Fillerคืออะไร?

Oracle APEX Form Filler เป็นส่วนขยายของ Chrome ที่พัฒนาโดย David Lawton และคุณลักษณะหลักของมันคือ "Use to fill out long winded APEX pages with test data"

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

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

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

                        A simple Oracle APEX field filler. Used to fill out long pages with test data. Sets text fields and text area values to label text.

Usage
-----
Right click anywhere on a web page and select Clear Fields/Fill Page.                    

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

ชื่อ Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
คำอธิบาย Use to fill out long winded APEX pages with test data
ขนาดไฟล์ 124 KB
จำนวนการติดตั้ง 125
เวอร์ชันปัจจุบัน 2.0.0
อัปเดตครั้งล่าสุด 2016-03-01
วันที่เผยแพร่ 2016-03-01
คะแนน 4.20/5 รวมทั้งหมด 5 คะแนน
ผู้พัฒนา David Lawton
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Oracle APEX Form Filler",
    "short_name": "Oracle APEX Form Filler",
    "description": "Use to fill out long winded APEX pages with test data",
    "version": "2.0.0",
    "browser_action": {
        "default_icon": "apex.png"
    },
    "icons": {
        "16": "apex.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "js": [
                "moment.min.js",
                "jquery.min.js",
                "content.js"
            ],
            "run_at": "document_end",
            "matches": [
                ""
            ]
        }
    ],
    "permissions": [
        "tabs",
        "notifications",
        "contextMenus"
    ]
}