OmniStudio Project Explorer
This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.
Cos'è OmniStudio Project Explorer?
OmniStudio Project Explorer è un'estensione di Chrome sviluppata da Salesforce, e la sua funzione principale è "This extension will make it easier to navigate between Saleforce Industries projects and its components in your org.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione OmniStudio Project Explorer
Scarica i file di estensione OmniStudio Project Explorer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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) Informazioni di Base sull'Estensione
| Nome | |
| ID | mlinmlldlfpiioajgllnnnkhhhiakdmi |
| URL Ufficiale | https://chromewebstore.google.com/detail/omnistudio-project-explor/mlinmlldlfpiioajgllnnnkhhhiakdmi |
| Descrizione | This extension will make it easier to navigate between Saleforce Industries projects and its components in your org. |
| Dimensione del File | 1.28 MB |
| Conteggio Installazioni | 1,385 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2021-02-28 |
| Data di Pubblicazione | 2021-02-20 |
| Valutazione | 2.33/5 Totale 3 Valutazioni |
| Sviluppatore | Salesforce |
| [email protected] | |
| Tipo di Pagamento | free |
| URL della Pagina della Politica sulla Privacy | http://www.salesforce.com/company/privacy |
| Lingue Supportate | 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"
]
}
]
} | |