OmniStudio Project Explorer

This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.

OmniStudio Project Explorerคืออะไร?

OmniStudio Project Explorer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Salesforce และคุณลักษณะหลักของมันคือ "This extension will make it easier to navigate between Saleforce Industries projects and its components in your org."

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

screenshot
screenshot

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

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

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

                        OmniStudio Project Explorer lets a Salesforce Industries user navigate Salesforce Industries features such as OmniScript, FlexCard, Integration Procedures, DataRaptors, and etc., and include a set of the instances in a "Module" project so you can migrate the feature instances between orgs as a group using IDX Workbench. 

- Filter and search Salesforce Industries feature types
- Search navigate the feature instances - Create "Module" projects in a Salesforce org
- Add / Remove the feature instances in a "Module" project
- List all the feature instances in a "Module" project

OmniStudio Project Explorer requires CME or INS Salesforce Industries Packages (version 109 or above)                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ OmniStudio Project Explorer OmniStudio Project Explorer
ID mlinmlldlfpiioajgllnnnkhhhiakdmi
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/omnistudio-project-explor/mlinmlldlfpiioajgllnnnkhhhiakdmi
คำอธิบาย This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.
ขนาดไฟล์ 1.28 MB
จำนวนการติดตั้ง 1,385
เวอร์ชันปัจจุบัน 1.0
อัปเดตครั้งล่าสุด 2021-02-28
วันที่เผยแพร่ 2021-02-20
คะแนน 2.33/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา Salesforce
อีเมล [email protected]
ประเภทการชำระเงิน free
URL หน้านโยบายความเป็นส่วนตัว http://www.salesforce.com/company/privacy
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "OmniStudio Project Explorer",
    "version": "1.0",
    "description": "This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.",
    "manifest_version": 2,
    "content_security_policy": "default-src 'self'",
    "web_accessible_resources": [
        "css\/*.css",
        "js\/*.js",
        "images\/*.*",
        "html\/*.html"
    ],
    "permissions": [
        "storage",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.visualforce.com\/*",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    },
    "browser_action": {
        "default_title": "Project Explorer",
        "default_icon": "images\/vlocityplatformicon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.force.com\/*",
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visualforce.com\/*"
            ],
            "js": [
                "js\/jsforce.min.js",
                "js\/vlocityDatapackQueryDefinitions.js",
                "js\/svg.js",
                "js\/init.js",
                "js\/contentScript.js",
                "js\/query.js",
                "js\/dommanipulator.js",
                "js\/test.js"
            ]
        }
    ]
}