Salesforce OmniStudio Explorer
This extension supports development of Salesforce OmniStudio applications
Cos'è Salesforce OmniStudio Explorer?
Salesforce OmniStudio Explorer è un'estensione di Chrome sviluppata da Joe McMaster, e la sua funzione principale è "This extension supports development of Salesforce OmniStudio applications".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Salesforce OmniStudio Explorer
Scarica i file di estensione Salesforce OmniStudio 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
This extension allows you to easily identify OmniStudio components on a Salesforce or Experience Cloud page. Currently it can identify the following OmniStudio components: -Cards (AngularJS) -FlexCards -OmniScripts (both AngularJS & LWC) -Custom Lightning Web Components To use the extension after installing it, simply click on the "Find" button to locate any OmniStudio components in the current page. Hover your cursor over any component to see it highlighted on the page (if the component is visible). Please Note: This is not an official Salesforce product.
Informazioni di Base sull'Estensione
Nome | |
ID | lkjligblhnlmmjjabnhfjljbhhnceade |
URL Ufficiale | https://chromewebstore.google.com/detail/salesforce-omnistudio-exp/lkjligblhnlmmjjabnhfjljbhhnceade |
Descrizione | This extension supports development of Salesforce OmniStudio applications |
Dimensione del File | 407 KB |
Conteggio Installazioni | 1,535 |
Versione Corrente | 2.4 |
Ultimo Aggiornamento | 2022-02-28 |
Data di Pubblicazione | 2022-02-01 |
Valutazione | 5.00/5 Totale 1 Valutazioni |
Sviluppatore | Joe McMaster |
[email protected] | |
Tipo di Pagamento | free |
URL della Pagina della Politica sulla Privacy | https://www.freeprivacypolicy.com/live/d6c5e559-39fc-4fa5-88ca-78be6976a0c4 |
Lingue Supportate | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Salesforce OmniStudio Explorer", "description": "This extension supports development of Salesforce OmniStudio applications", "version": "2.4", "action": { "default_icon": "images\/icon.png", "default_popup": "popup.html" }, "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "contentscript.js" ], "all_frames": true, "run_at": "document_end" } ], "permissions": [ "activeTab", "cookies" ], "host_permissions": [ "*:\/\/*\/*" ], "icons": { "16": "images\/icon16.png", "48": "images\/icon48.png", "128": "images\/icon128.png" } } |