Salesforce Flow Extension

Shows tooltips on flow elements and exposes flow information with GPT queries

Salesforce Flow Extension क्या है?

Salesforce Flow Extension fernandomendes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Shows tooltips on flow elements and exposes flow information with GPT queries"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Flow Extension एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*"
    ]
}