Salesforce OmniStudio Explorer

This extension supports development of Salesforce OmniStudio applications

Salesforce OmniStudio Explorer क्या है?

Salesforce OmniStudio Explorer Joe McMaster द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "This extension supports development of Salesforce OmniStudio applications"।

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

screenshot

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

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

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

                        This extension allows you to easily identify OmniStudio components on a Salesforce or Experience Cloud page.

Currently it can identify the following OmniStudio components:
-Cards (AngularJS)
-FlexCards
-OmniScripts (both AngularJS & LWC)
-Custom Lightning Web Components

To use the extension after installing it, simply click on the "Find" button to locate any OmniStudio components in the current page.  Hover your cursor over any component to see it highlighted on the page (if the component is visible).

Please Note:  This is not an official Salesforce product.                    

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

नाम Salesforce OmniStudio Explorer Salesforce OmniStudio Explorer
ID lkjligblhnlmmjjabnhfjljbhhnceade
आधिकारिक URL https://chromewebstore.google.com/detail/salesforce-omnistudio-exp/lkjligblhnlmmjjabnhfjljbhhnceade
विवरण This extension supports development of Salesforce OmniStudio applications
फ़ाइल का आकार 407 KB
स्थापना संख्या 1,535
वर्तमान संस्करण 2.4
अंतिम अपडेट 2022-02-28
प्रकाशन तिथि 2022-02-01
रेटिंग 5.00/5 कुल 1 रेटिंग्स
डेवलपर Joe McMaster
ईमेल [email protected]
भुगतान के प्रकार free
गोपनीयता नीति पृष्ठ URL https://www.freeprivacypolicy.com/live/d6c5e559-39fc-4fa5-88ca-78be6976a0c4
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce OmniStudio Explorer",
    "description": "This extension supports development of Salesforce OmniStudio applications",
    "version": "2.4",
    "action": {
        "default_icon": "images\/icon.png",
        "default_popup": "popup.html"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "all_frames": true,
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "activeTab",
        "cookies"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "icons": {
        "16": "images\/icon16.png",
        "48": "images\/icon48.png",
        "128": "images\/icon128.png"
    }
}