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”。

擴展截圖

screenshot
screenshot
screenshot

下載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 Salesforce Flow Extension
ID dpeebajhbigfamnhmnlabecogegimodb
官方網址 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\/*"
    ]
}