SalesforceDeploymentStatus(Custom)

Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API

什么是SalesforceDeploymentStatus(Custom)?

SalesforceDeploymentStatus(Custom)是由Ravi Narayanan开发的Chrome扩展程序,该扩展的主要功能是“Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API”。

扩展截图

下载SalesforceDeploymentStatus(Custom)扩展crx文件

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

扩展使用说明

                        Currently Salesforce does not display the details about components being deployed via metadata api. This plugin override the standard deployment status and display a more sophisticated 360 overview of the deployment results.                    

扩展基本信息

名称 SalesforceDeploymentStatus(Custom) SalesforceDeploymentStatus(Custom)
ID fjlkmmgolajmcippgjfabpjingepjgad
官方URL https://chromewebstore.google.com/detail/salesforcedeploymentstatu/fjlkmmgolajmcippgjfabpjingepjgad
简介 Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API
文件大小 268 KB
安装次数 82
当前版本 3
更新时间 2020-12-10
上架时间 2020-11-28
评分 3.67/5 共3次评分
开发者 Ravi Narayanan
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "version": "3",
    "name": "SalesforceDeploymentStatus(Custom)",
    "description": "Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API",
    "browser_action": {
        "default_icon": "settings.png"
    },
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "permissions": [
        "activeTab",
        "cookies",
        "https:\/\/*.force.com\/*",
        "https:\/\/*.salesforce.com\/*"
    ],
    "background": {
        "scripts": [
            "background\/background.js"
        ]
    },
    "web_accessible_resources": [
        "html\/index.html",
        "js\/angular.js",
        "js\/angularbootstrap.js"
    ],
    "content_scripts": [
        {
            "js": [
                "js\/angular.js",
                "js\/angularbootstrap.js",
                "js\/contentScript.js"
            ],
            "matches": [
                "https:\/\/*.force.com\/lightning\/setup\/DeployStatus\/*"
            ]
        }
    ]
}