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
官方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\/*"
    ]
}