SAP CPI Helper

Extends the SAP Cloud Platform Integration with some useful features to improve usability.

SAP CPI Helper क्या है?

SAP CPI Helper dbeckbauer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Extends the SAP Cloud Platform Integration with some useful features to improve usability."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में SAP CPI Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This Chrome Plugin extends the SAP Cloud Platform Integration with some useful features.

For more information please visit our GitHub Page https://github.com/dbeck121/CPI-Helper-Chrome-Extension

Integration Flow Designer Improvements
- Sidebar with processed messages
- Activate InlineTrace to see message route in integration flow designer
- Directly see trace messages in integration flow designer
- Pretty print for trace messages in integration flow designer
-Button to switch trace
-Directly go to traces of specific message
-Directly go to logs and attachments of specific message
-Pop-up with error-message when hovering message in sidebar
-Pop-up with deployment info
-View and delete variables in info pop-up
-General CPI Improvements
-Useful links in browser-bar-popup
-Last visited iflows in browser-bar-popup

License
GNU GPLv3                    

एक्सटेंशन की मूल जानकारी

नाम SAP CPI Helper SAP CPI Helper
ID epoggeaemnkacpinjfgccbjakglngkpb
आधिकारिक URL https://chromewebstore.google.com/detail/sap-cpi-helper/epoggeaemnkacpinjfgccbjakglngkpb
विवरण Extends the SAP Cloud Platform Integration with some useful features to improve usability.
फ़ाइल का आकार 5.45 MB
स्थापना संख्या 14,189
वर्तमान संस्करण 3.11.0
अंतिम अपडेट 2024-03-04
प्रकाशन तिथि 2020-06-21
रेटिंग 4.97/5 कुल 30 रेटिंग्स
डेवलपर dbeckbauer
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/dbeck121/CPI-Helper-Chrome-Extension
सहायता पृष्ठ URL https://github.com/dbeck121/CPI-Helper-Chrome-Extension
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "applications": {
        "gecko": {
            "id": "cpi_helper@dbeck121"
        }
    },
    "name": "SAP CPI Helper",
    "short_name": "CPI Helper",
    "version": "3.11.0",
    "description": "Extends the SAP Cloud Platform Integration with some useful features to improve usability.",
    "author": "Dominic Beckbauer",
    "homepage_url": "https:\/\/github.com\/dbeck121\/CPI-Helper-Chrome-Extension",
    "permissions": [
        "declarativeContent",
        "storage",
        "https:\/\/*.hana.ondemand.com\/itspaces",
        "https:\/\/*.platform.sapcloud.cn\/itspaces",
        "https:\/\/*.hana.ondemand.com\/shell",
        "webRequest"
    ],
    "background": {
        "scripts": [
            "background\/background.js",
            "background\/hot-reload.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.hana.ondemand.com\/shell\/design\/*",
                "https:\/\/*.hana.ondemand.com\/itspaces\/*",
                "https:\/\/*.hana.ondemand.com\/shell\/*",
                "https:\/\/*.platform.sapcloud.cn\/itspaces\/*"
            ],
            "js": [
                "\/lib\/ulog\/ulog-full.min.js",
                "\/common\/logging.js",
                "\/common\/tools.js",
                "\/lib\/prettify\/prettify.js",
                "\/lib\/prettify\/prettify-sql.js",
                "\/lib\/jszip\/jszip.min.js",
                "\/scripts\/identify-tenant.js",
                "\/lib\/xmlToJson\/xmlToJson.js",
                "\/lib\/jQuery\/jquery.min.js",
                "\/lib\/semanticui\/semantic.min.js",
                "\/plugins\/run.js",
                "\/plugins\/simplenotepad.js",
                "\/plugins\/reference.js",
                "\/plugins\/undeploy.js",
                "\/plugins\/cpitransporter.js",
                "\/plugins\/figaf.js",
                "\/plugins\/OpenAIServices.js",
                "\/plugins\/WHINT_IFD.js",
                "\/plugins\/settingsPaneResizer.js",
                "\/plugins\/timeline.js",
                "\/plugins\/traceModifer.js",
                "\/plugins\/example.js",
                "\/scripts\/ui.js",
                "\/scripts\/logs.js",
                "\/whatsNew\/whatsNewLog.js",
                "\/whatsNew\/whatsNew.js",
                "\/scripts\/plugins.js",
                "\/scripts\/contentScript.js"
            ],
            "css": [
                "\/lib\/prettify\/prettify.css",
                "\/lib\/threeDots\/three-dots.min.css",
                "\/lib\/semanticui\/semantic.min.css",
                "\/css\/contentScript.css"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "images\/cpi_helper16_full.png",
            "32": "images\/cpi_helper32_full.png",
            "48": "images\/cpi_helper48_full.png",
            "128": "images\/cpi_helper128_full.png"
        },
        "show_matches": [
            "https:\/\/*.hana.ondemand.com\/shell\/design\/*",
            "https:\/\/*.hana.ondemand.com\/itspaces\/*",
            "https:\/\/*.hana.ondemand.com\/shell\/*",
            "https:\/\/*.platform.sapcloud.cn\/itspaces\/*"
        ]
    },
    "icons": {
        "16": "images\/cpi_helper16_full.png",
        "32": "images\/cpi_helper32_full.png",
        "48": "images\/cpi_helper48_full.png",
        "128": "images\/cpi_helper128_full.png"
    },
    "web_accessible_resources": [
        "images\/favicons\/*.png",
        "lib\/semanticui\/*",
        "images\/*"
    ],
    "manifest_version": 2
}