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
官方網址 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"
    ]
}