Salesforce OmniStudio Explorer

This extension supports development of Salesforce OmniStudio applications

Salesforce OmniStudio Explorer là gì?

Salesforce OmniStudio Explorer là một tiện ích mở rộng Chrome được phát triển bởi Joe McMaster, và tính năng chính của nó là "This extension supports development of Salesforce OmniStudio applications".

Ả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 Salesforce OmniStudio Explorer

Tải xuống các tệp mở rộng Salesforce OmniStudio Explorer 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 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.                    

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

Tên Salesforce OmniStudio Explorer Salesforce OmniStudio Explorer
ID lkjligblhnlmmjjabnhfjljbhhnceade
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-omnistudio-exp/lkjligblhnlmmjjabnhfjljbhhnceade
Mô tả This extension supports development of Salesforce OmniStudio applications
Kích Thước Tệp 407 KB
Số Lần Cài Đặt 1,535
Phiên Bản Hiện Tại 2.4
Cập Nhật Lần Cuối 2022-02-28
Ngày Phát Hành 2022-02-01
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Joe McMaster
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://www.freeprivacypolicy.com/live/d6c5e559-39fc-4fa5-88ca-78be6976a0c4
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}