Salesforce OmniStudio Explorer

This extension supports development of Salesforce OmniStudio applications

Salesforce OmniStudio Explorerคืออะไร?

Salesforce OmniStudio Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joe McMaster และคุณลักษณะหลักของมันคือ "This extension supports development of Salesforce OmniStudio applications"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce OmniStudio Explorer

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce OmniStudio Explorer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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"
    }
}