Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Hvad er Oracle APEX Form Filler?

Oracle APEX Form Filler er en Chrome-udvidelse udviklet af David Lawton, og dens hovedfunktion er "Use to fill out long winded APEX pages with test data".

Download Oracle APEX Form Filler-udvidelses-CRX-fil

Download Oracle APEX Form Filler-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
Officiel URL https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Beskrivelse Use to fill out long winded APEX pages with test data
Filstørrelse 124 KB
Antal Installationer 125
Nuværende Version 2.0.0
Senest Opdateret 2016-03-01
Udgivelsesdato 2016-03-01
Bedømmelse 4.20/5 Samlet 5 Bedømmelser
Udvikler David Lawton
Betalingsmetode free
Understøttede Sprog 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"
    ]
}