Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

什么是Oracle APEX Form Filler?

Oracle APEX Form Filler是由David Lawton开发的Chrome扩展程序,该扩展的主要功能是“Use to fill out long winded APEX pages with test data”。

下载Oracle APEX Form Filler扩展crx文件

下载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"
    ]
}