APEX Project Eye

Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.

APEX Project Eye là gì?

APEX Project Eye là một tiện ích mở rộng Chrome được phát triển bởi akravos, và tính năng chính của nó là "Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng APEX Project Eye

Tải xuống các tệp mở rộng APEX Project Eye dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This Add-On initializes a broadcast channel in Oracle Page Designer and allows APEX Project Eye applications to retrieve the application and page ids that are being edited. It injects a line of javascript code that is executed only if Page Designer is detected. Broadcast channels allow communication between tabs/windows within the same domain in the same browser.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên APEX Project Eye APEX Project Eye
ID dpkbfcakfleiipafifgbndbeamkdcopm
URL Chính Thức https://chromewebstore.google.com/detail/apex-project-eye/dpkbfcakfleiipafifgbndbeamkdcopm
Mô tả Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.
Kích Thước Tệp 49.68 KB
Số Lần Cài Đặt 61
Phiên Bản Hiện Tại 1.3
Cập Nhật Lần Cuối 2024-02-02
Ngày Phát Hành 2020-05-16
Nhà Phát Triển akravos
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://www.apexprojecteye.com
URL Trang Trợ Giúp https://www.apexprojecteye.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "APEX Project Eye",
    "version": "1.3",
    "description": "Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "32": "icon32.png",
            "48": "icon48.png",
            "64": "icon64.png",
            "96": "icon96.png",
            "128": "icon128.png"
        },
        "theme_icons": [
            {
                "light": "icon16.png",
                "dark": "icon16.png",
                "size": 16
            },
            {
                "light": "icon32.png",
                "dark": "icon32.png",
                "size": 32
            }
        ]
    },
    "web_accessible_resources": [
        {
            "resources": [
                "ape-extension.js"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "icons": {
        "16": "icon16.png",
        "32": "icon32.png",
        "48": "icon48.png",
        "64": "icon64.png",
        "96": "icon96.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_end",
            "matches": [
                "*:\/\/*\/f?p=4000:4500:*",
                "*:\/\/*\/*\/f?p=4000:4500:*",
                "*:\/\/*\/*\/*\/f?p=4000:4500:*",
                "*:\/\/*\/*\/*\/*\/f?p=4000:4500:*",
                "*:\/\/*\/*\/*\/*\/*\/f?p=4000:4500:*",
                "*:\/\/*\/app-builder\/page-designer*",
                "*:\/\/*\/*\/app-builder\/page-designer*",
                "*:\/\/*\/*\/*\/app-builder\/page-designer*",
                "*:\/\/*\/*\/*\/*\/app-builder\/page-designer*",
                "*:\/\/*\/*\/*\/*\/*\/app-builder\/page-designer*"
            ],
            "js": [
                "loader.js"
            ]
        }
    ]
}