Salesforce Flow Navigator

Adds a Flow name filter to Salesforce's Flow page

什么是Salesforce Flow Navigator?

Salesforce Flow Navigator是由msg.pelleg开发的Chrome扩展程序,该扩展的主要功能是“Adds a Flow name filter to Salesforce's Flow page”。

扩展截图

screenshot

下载Salesforce Flow Navigator扩展crx文件

下载Salesforce Flow Navigator扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        The Flow Filter for Salesforce is a simple and useful Chrome extension that adds a filtering feature to the Salesforce Flow page. With this extension, you can filter your Flows based on different criteria such as name, created date, or last modified date. This can help you save time and find the specific Flows you need more easily.                    

扩展基本信息

名称 Salesforce Flow Navigator Salesforce Flow Navigator
ID gkladaobmalbjgnecilbajihgknfikdn
官方URL https://chromewebstore.google.com/detail/salesforce-flow-navigator/gkladaobmalbjgnecilbajihgknfikdn
简介 Adds a Flow name filter to Salesforce's Flow page
文件大小 80.02 KB
安装次数 55
当前版本 1.0.0
更新时间 2023-04-20
上架时间 2023-04-19
评分 5.00/5 共3次评分
开发者 msg.pelleg
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce Flow Navigator",
    "description": "Adds a Flow name filter to Salesforce's Flow page",
    "version": "1.0.0",
    "manifest_version": 3,
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lightning.force.com\/lightning\/setup\/Flows\/home"
            ],
            "js": [
                "modal-index.js"
            ],
            "css": [
                "modal-index.css"
            ]
        }
    ],
    "icons": {
        "16": "resources\/icon16.png",
        "32": "resources\/icon32.png",
        "48": "resources\/icon48.png",
        "128": "resources\/icon128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "modal-index.css",
                "modal-index.html",
                "resources\/*.png"
            ],
            "matches": [
                "https:\/\/*.lightning.force.com\/*"
            ]
        }
    ]
}