OmniStudio Project Explorer
This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.
Co to jest OmniStudio Project Explorer?
OmniStudio Project Explorer to rozszerzenie Chrome opracowane przez Salesforce, a jego główną funkcją jest „This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia OmniStudio Project Explorer
Pobierz pliki rozszerzeń OmniStudio Project Explorer w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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)
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | mlinmlldlfpiioajgllnnnkhhhiakdmi |
Oficjalny URL | https://chromewebstore.google.com/detail/omnistudio-project-explor/mlinmlldlfpiioajgllnnnkhhhiakdmi |
Opis | This extension will make it easier to navigate between Saleforce Industries projects and its components in your org. |
Rozmiar pliku | 1.28 MB |
Liczba instalacji | 1,385 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2021-02-28 |
Data Publikacji | 2021-02-20 |
Ocena | 2.33/5 Łącznie 3 Oceny |
Deweloper | Salesforce |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Polityki Prywatności | http://www.salesforce.com/company/privacy |
Obsługiwane Języki | 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" ] } ] } |