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 |
公式URL | 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 |
Eメール | [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" } } |