SalesforceDeploymentStatus(Custom)

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

What is SalesforceDeploymentStatus(Custom)?

SalesforceDeploymentStatus(Custom) is a Chrome extension developed by Ravi Narayanan, and its main feature is "Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API".

Extension Screenshots

Download SalesforceDeploymentStatus(Custom) Extension CRX File

Download SalesforceDeploymentStatus(Custom) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name SalesforceDeploymentStatus(Custom) SalesforceDeploymentStatus(Custom)
ID fjlkmmgolajmcippgjfabpjingepjgad
Official URL https://chromewebstore.google.com/detail/salesforcedeploymentstatu/fjlkmmgolajmcippgjfabpjingepjgad
Description Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API
File Size 268 KB
Installation Count 82
Current Version 3
Last Updated 2020-12-10
Publish Date 2020-11-28
Rating 3.67/5 Total 3 Ratings
Developer Ravi Narayanan
Email [email protected]
Payment Type free
Supported Languages 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\/*"
            ]
        }
    ]
}