SalesforceDeploymentStatus(Custom)

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

Was ist SalesforceDeploymentStatus(Custom)?

SalesforceDeploymentStatus(Custom) ist eine Chrome-Erweiterung, die von Ravi Narayanan entwickelt wurde, und ihr Hauptmerkmal ist "Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API".

Erweiterungsscreenshots

SalesforceDeploymentStatus(Custom)-Erweiterungs-CRX-Datei herunterladen

Laden Sie SalesforceDeploymentStatus(Custom)-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name SalesforceDeploymentStatus(Custom) SalesforceDeploymentStatus(Custom)
ID fjlkmmgolajmcippgjfabpjingepjgad
Offizielle URL https://chromewebstore.google.com/detail/salesforcedeploymentstatu/fjlkmmgolajmcippgjfabpjingepjgad
Beschreibung Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API
Dateigröße 268 KB
Installationsanzahl 82
Aktuelle Version 3
Letztes Update 2020-12-10
Veröffentlichungsdatum 2020-11-28
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Ravi Narayanan
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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\/*"
            ]
        }
    ]
}