Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Apa itu Oracle APEX Form Filler?

Oracle APEX Form Filler adalah ekstensi Chrome yang dikembangkan oleh David Lawton, dan fitur utamanya adalah "Use to fill out long winded APEX pages with test data".

Unduh Berkas CRX Ekstensi Oracle APEX Form Filler

Unduh file ekstensi Oracle APEX Form Filler dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL Resmi https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Deskripsi Use to fill out long winded APEX pages with test data
Ukuran File 124 KB
Jumlah Instalasi 125
Versi Saat Ini 2.0.0
Terakhir Diperbarui 2016-03-01
Tanggal Publikasi 2016-03-01
Penilaian 4.20/5 Total 5 Penilaian
Pengembang David Lawton
Tipe Pembayaran free
Bahasa yang Didukung 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"
    ]
}