Salesforce OmniStudio Explorer
This extension supports development of Salesforce OmniStudio applications
What is Salesforce OmniStudio Explorer?
Salesforce OmniStudio Explorer is a Chrome extension developed by Joe McMaster, and its main feature is "This extension supports development of Salesforce OmniStudio applications".
Extension Screenshots
Download Salesforce OmniStudio Explorer Extension CRX File
Download Salesforce OmniStudio Explorer extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | lkjligblhnlmmjjabnhfjljbhhnceade |
Official URL | https://chromewebstore.google.com/detail/salesforce-omnistudio-exp/lkjligblhnlmmjjabnhfjljbhhnceade |
Description | This extension supports development of Salesforce OmniStudio applications |
File Size | 407 KB |
Installation Count | 1,535 |
Current Version | 2.4 |
Last Updated | 2022-02-28 |
Publish Date | 2022-02-01 |
Rating | 5.00/5 Total 1 Ratings |
Developer | Joe McMaster |
[email protected] | |
Payment Type | free |
Privacy Policy Page URL | https://www.freeprivacypolicy.com/live/d6c5e559-39fc-4fa5-88ca-78be6976a0c4 |
Supported Languages | 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" } } |