Salesforce Flow Extension
Shows tooltips on flow elements and exposes flow information with GPT queries
Salesforce Flow Extensionคืออะไร?
Salesforce Flow Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fernandomendes และคุณลักษณะหลักของมันคือ "Shows tooltips on flow elements and exposes flow information with GPT queries"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Flow Extension
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
อีเมล | [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\/*" ] } |