Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

O que é Oracle APEX Form Filler?

Oracle APEX Form Filler é uma extensão do Chrome desenvolvida por David Lawton, e sua principal característica é "Use to fill out long winded APEX pages with test data".

Baixar o arquivo CRX da Extensão Oracle APEX Form Filler

Baixe arquivos de extensão Oracle APEX Form Filler no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
URL Oficial https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Descrição Use to fill out long winded APEX pages with test data
Tamanho do Arquivo 124 KB
Contagem de Instalações 125
Versão Atual 2.0.0
Última Atualização 2016-03-01
Data de Publicação 2016-03-01
Classificação 4.20/5 Total de 5 Avaliações
Desenvolvedor David Lawton
Tipo de Pagamento free
Idiomas Suportados 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"
    ]
}