Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

Co to jest Oracle APEX Form Filler?

Oracle APEX Form Filler to rozszerzenie Chrome opracowane przez David Lawton, a jego główną funkcją jest „Use to fill out long winded APEX pages with test data”.

Pobierz plik CRX rozszerzenia Oracle APEX Form Filler

Pobierz pliki rozszerzeń Oracle APEX Form Filler w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
Oficjalny URL https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
Opis Use to fill out long winded APEX pages with test data
Rozmiar pliku 124 KB
Liczba instalacji 125
Aktualna Wersja 2.0.0
Ostatnia Aktualizacja 2016-03-01
Data Publikacji 2016-03-01
Ocena 4.20/5 Łącznie 5 Oceny
Deweloper David Lawton
Typ Płatności free
Obsługiwane Języki 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"
    ]
}