Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

¿Qué es Oracle APEX Form Filler?

Oracle APEX Form Filler es una extensión de Chrome desarrollada por David Lawton, y su función principal es "Use to fill out long winded APEX pages with test data".

Descargar Archivo CRX de la Extensión Oracle APEX Form Filler

Descarga archivos de extensión Oracle APEX Form Filler en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL Oficial https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Descripción Use to fill out long winded APEX pages with test data
Tamaño del Archivo 124 KB
Cantidad de Instalaciones 125
Versión Actual 2.0.0
Última Actualización 2016-03-01
Fecha de Publicación 2016-03-01
Calificación 4.20/5 Total de 5 Calificaciones
Desarrollador David Lawton
Tipo de Pago free
Idiomas Soportados 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"
    ]
}