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是由Salesforce開發的Chrome擴展程式,該擴展的主要功能是“This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.”。
擴展截圖
下載OmniStudio Project Explorer擴展crx文件
下載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)
擴展基本資訊
名稱 | |
ID | mlinmlldlfpiioajgllnnnkhhhiakdmi |
官方網址 | 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" ] } ] } |