Salesforce OmniStudio Explorer
This extension supports development of Salesforce OmniStudio applications
什麼是Salesforce OmniStudio Explorer?
Salesforce OmniStudio Explorer是由Joe McMaster開發的Chrome擴展程式,該擴展的主要功能是“This extension supports development of Salesforce OmniStudio applications”。
擴展截圖
下載Salesforce OmniStudio Explorer擴展crx文件
下載Salesforce OmniStudio Explorer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | |
ID | lkjligblhnlmmjjabnhfjljbhhnceade |
官方網址 | https://chromewebstore.google.com/detail/salesforce-omnistudio-exp/lkjligblhnlmmjjabnhfjljbhhnceade |
簡介 | This extension supports development of Salesforce OmniStudio applications |
檔案大小 | 407 KB |
安裝次數 | 1,535 |
目前版本 | 2.4 |
更新時間 | 2022-02-28 |
上架時間 | 2022-02-01 |
評分 | 5.00/5 共 1 次評分 |
開發者 | Joe McMaster |
電子郵箱 | [email protected] |
付費類型 | free |
隱私政策頁面URL | https://www.freeprivacypolicy.com/live/d6c5e559-39fc-4fa5-88ca-78be6976a0c4 |
支援的語言 | 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" } } |