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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

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