Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Wat is Oracle APEX Form Filler?

Oracle APEX Form Filler is een Chrome-extensie ontwikkeld door David Lawton, en de belangrijkste functie is "Use to fill out long winded APEX pages with test data".

Download het CRX-bestand van de extensie Oracle APEX Form Filler

Download Oracle APEX Form Filler-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
Officiële URL https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Beschrijving Use to fill out long winded APEX pages with test data
Bestandsgrootte 124 KB
Aantal Installaties 125
Huidige Versie 2.0.0
Laatst Bijgewerkt 2016-03-01
Publicatiedatum 2016-03-01
Beoordeling 4.20/5 Totaal 5 Beoordelingen
Ontwikkelaar David Lawton
Betalingswijze free
Ondersteunde Talen 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"
    ]
}