Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Cos'è Oracle APEX Form Filler?

Oracle APEX Form Filler è un'estensione di Chrome sviluppata da David Lawton, e la sua funzione principale è "Use to fill out long winded APEX pages with test data".

Scarica il file CRX dell'estensione Oracle APEX Form Filler

Scarica i file di estensione Oracle APEX Form Filler in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL Ufficiale https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Descrizione Use to fill out long winded APEX pages with test data
Dimensione del File 124 KB
Conteggio Installazioni 125
Versione Corrente 2.0.0
Ultimo Aggiornamento 2016-03-01
Data di Pubblicazione 2016-03-01
Valutazione 4.20/5 Totale 5 Valutazioni
Sviluppatore David Lawton
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}