Oracle APEX Form Filler

Use to fill out long winded APEX pages with test data

ما هو Oracle APEX Form Filler؟

Oracle APEX Form Filler هو إضافة Chrome تم تطويرها بواسطة David Lawton، والميزة الرئيسية لها هي "Use to fill out long winded APEX pages with test data".

تحميل ملف CRX للإضافة Oracle APEX Form Filler

قم بتنزيل ملفات الامتداد Oracle APEX Form Filler بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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.                    

معلومات أساسية عن التمديد

الاسم Oracle APEX Form Filler Oracle APEX Form Filler
ID aoplimchpopijhkppiaedgefjncfdcgj
عنوان URL الرسمي https://chromewebstore.google.com/detail/oracle-apex-form-filler/aoplimchpopijhkppiaedgefjncfdcgj
الوصف Use to fill out long winded APEX pages with test data
حجم الملف 124 KB
عدد التثبيتات 125
النسخة الحالية 2.0.0
آخر تحديث 2016-03-01
تاريخ النشر 2016-03-01
تقييم 4.20/5 مجموع تقييمات 5
المطور David Lawton
نوع الدفع free
اللغات المدعومة 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"
    ]
}