Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Was ist Oracle APEX Form Filler?

Oracle APEX Form Filler ist eine Chrome-Erweiterung, die von David Lawton entwickelt wurde, und ihr Hauptmerkmal ist "Use to fill out long winded APEX pages with test data".

Oracle APEX Form Filler-Erweiterungs-CRX-Datei herunterladen

Laden Sie Oracle APEX Form Filler-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
Offizielle URL https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Beschreibung Use to fill out long winded APEX pages with test data
Dateigröße 124 KB
Installationsanzahl 125
Aktuelle Version 2.0.0
Letztes Update 2016-03-01
Veröffentlichungsdatum 2016-03-01
Bewertung 4.20/5 Insgesamt 5 Bewertungen
Entwickler David Lawton
Zahlungsart free
Unterstützte Sprachen 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"
    ]
}