Salesforce inspector

Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.

什么是Salesforce inspector?

Salesforce inspector是由Søren Krabbe开发的Chrome扩展程序,该扩展的主要功能是“Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载Salesforce inspector扩展crx文件

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

扩展使用说明

                        Extension to add a metadata layout on top of the standard Salesforce UI to improve the productivity and joy of Salesforce configuration, development, and integration work.

See more at https://github.com/sorenkrabbe/Chrome-Salesforce-inspector (also available for firefox)                    

扩展基本信息

名称 Salesforce inspector Salesforce inspector
ID aodjmnfhjibkcdimpodiifdjnnncaafh
官方URL https://chromewebstore.google.com/detail/salesforce-inspector/aodjmnfhjibkcdimpodiifdjnnncaafh
简介 Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.
文件大小 422 KB
安装次数 596,535
当前版本 1.14
更新时间 2022-12-22
上架时间 2020-05-14
评分 4.81/5 共300次评分
开发者 Søren Krabbe
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
帮助页面URL https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
隐私政策页面URL https://github.com/sorenkrabbe/Chrome-Salesforce-inspector
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Salesforce inspector",
    "description": "Productivity tools for Salesforce administrators and developers to inspect data and metadata directly from the Salesforce UI.",
    "version": "1.14",
    "icons": {
        "128": "icon128.png"
    },
    "minimum_chrome_version": "61",
    "permissions": [
        "https:\/\/*.salesforce.com\/*",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.cloudforce.com\/*",
        "https:\/\/*.visualforce.com\/*",
        "cookies"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*",
                "https:\/\/*.lightning.force.com\/*",
                "https:\/\/*.cloudforce.com\/*",
                "https:\/\/*.visualforce.com\/*"
            ],
            "all_frames": true,
            "css": [
                "button.css",
                "inspect-inline.css"
            ],
            "js": [
                "button.js",
                "inspect-inline.js"
            ]
        }
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "web_accessible_resources": [
        "popup.html",
        "data-export.html",
        "data-import.html",
        "inspect.html",
        "metadata-retrieve.html",
        "explore-api.html",
        "limits.html"
    ],
    "incognito": "split",
    "manifest_version": 2
}