APEX Project Eye

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

Qu'est-ce que APEX Project Eye ?

APEX Project Eye est une extension Chrome développée par akravos, et sa fonction principale est "Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension APEX Project Eye

Téléchargez les fichiers d'extension APEX Project Eye au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom APEX Project Eye APEX Project Eye
ID dpkbfcakfleiipafifgbndbeamkdcopm
URL Officiel https://chromewebstore.google.com/detail/apex-project-eye/dpkbfcakfleiipafifgbndbeamkdcopm
Description Code used from APE browser addon to connect Oracle APEX PageDesigner and APE watchlist.
Taille du Fichier 49.68 KB
Nombre d'Installations 61
Version Actuelle 1.3
Dernière Mise à Jour 2024-02-02
Date de Publication 2020-05-16
Développeur akravos
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://www.apexprojecteye.com
URL de la Page d'Aide https://www.apexprojecteye.com
Langues Prises en Charge 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"
            ]
        }
    ]
}