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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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 |
공식 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" ] } ] } |