Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Oracle APEX Form Filler là gì?

Oracle APEX Form Filler là một tiện ích mở rộng Chrome được phát triển bởi David Lawton, và tính năng chính của nó là "Use to fill out long winded APEX pages with test data".

Tải xuống tệp CRX của tiện ích mở rộng Oracle APEX Form Filler

Tải xuống các tệp mở rộng Oracle APEX Form Filler dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL Chính Thức https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Mô tả Use to fill out long winded APEX pages with test data
Kích Thước Tệp 124 KB
Số Lần Cài Đặt 125
Phiên Bản Hiện Tại 2.0.0
Cập Nhật Lần Cuối 2016-03-01
Ngày Phát Hành 2016-03-01
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển David Lawton
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}