Salesforce Flow Extension
Shows tooltips on flow elements and exposes flow information with GPT queries
Salesforce Flow Extensionとは何ですか?
Salesforce Flow Extensionはfernandomendesによって開発されたChromeの拡張機能で、その主な機能は「Shows tooltips on flow elements and exposes flow information with GPT queries」です。
拡張機能のスクリーンショット
Salesforce Flow Extension拡張機能のCRXファイルをダウンロード
Salesforce Flow Extension拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
A simple browser extension that adds tooltips to Salesforce flows and displays a table of elements in the flow, allowing requests to OpenAI GPT to explain/summarize the flow. The extension runs on the browser and first checks whether a Salesforce page is open. If so, then calls the Salesforce tooling API and gets the flow metadata/definition. Then it adds a tooltip with relevant information on each of the flow elements. The button "View Definition" opens a frame containing the flow definition in a table with a short explanation and buttons to submit questions about the flow to OpenAI GPT. The privacy policy is at https://sites.google.com/view/mybrowserextensions/home This extension does not handle personal or sensitive user data. It only communicates with Salesforce and OpenAI to request data to display on the screen and nothing else is sent to any other server. The source code can be found at: https://github.com/Fernando-Fernandez/SalesforceFlowExtension
拡張機能の基本情報
名前 | Salesforce Flow Extension |
ID | dpeebajhbigfamnhmnlabecogegimodb |
公式URL | https://chromewebstore.google.com/detail/salesforce-flow-extension/dpeebajhbigfamnhmnlabecogegimodb |
説明 | Shows tooltips on flow elements and exposes flow information with GPT queries |
ファイルサイズ | 49.84 KB |
インストール数 | 710 |
現在のバージョン | 1.1.4 |
最終更新日 | 2023-11-08 |
公開日 | 2023-03-26 |
評価 | 4.75/5 合計 4 レビュー |
開発者 | fernandomendes |
Eメール | [email protected] |
支払い方法 | free |
拡張機能のウェブサイト | https://www.linkedin.com/posts/fernandofernandez1_flow-salesforce-activity-7075907056083341312-feux?utm_source=share&utm_medium=member_desktop |
ヘルプページのURL | https://github.com/Fernando-Fernandez/SalesforceFlowExtension |
プライバシーポリシーページのURL | https://sites.google.com/view/mybrowserextensions/home |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Salesforce Flow Extension", "version": "1.1.4", "description": "Shows tooltips on flow elements and exposes flow information with GPT queries", "icons": { "16": "images\/icon-16.png", "32": "images\/icon-32.png", "48": "images\/icon-48.png", "128": "images\/icon-128.png" }, "content_scripts": [ { "js": [ "scripts\/content.js" ], "type": "module", "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*", "https:\/\/*.lightning.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*" ], "all_frames": true } ], "web_accessible_resources": [ { "matches": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*", "https:\/\/*.lightning.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*" ], "resources": [ "scripts\/*", "popup.html" ] } ], "background": { "service_worker": "scripts\/background.js", "type": "module" }, "permissions": [ "cookies" ], "host_permissions": [ "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*", "https:\/\/*.lightning.force.com\/*", "https:\/\/*.cloudforce.com\/*", "https:\/\/*.visualforce.com\/*" ] } |