SalesforceDeploymentStatus(Custom)

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

Co to jest SalesforceDeploymentStatus(Custom)?

SalesforceDeploymentStatus(Custom) to rozszerzenie Chrome opracowane przez Ravi Narayanan, a jego główną funkcją jest „Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API”.

Zrzuty ekranu rozszerzenia

Pobierz plik CRX rozszerzenia SalesforceDeploymentStatus(Custom)

Pobierz pliki rozszerzeń SalesforceDeploymentStatus(Custom) w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa SalesforceDeploymentStatus(Custom) SalesforceDeploymentStatus(Custom)
ID fjlkmmgolajmcippgjfabpjingepjgad
Oficjalny URL https://chromewebstore.google.com/detail/salesforcedeploymentstatu/fjlkmmgolajmcippgjfabpjingepjgad
Opis Salesforce Deployment Helper - This Extension will display the deployment results for components deployed via Metadata API
Rozmiar pliku 268 KB
Liczba instalacji 82
Aktualna Wersja 3
Ostatnia Aktualizacja 2020-12-10
Data Publikacji 2020-11-28
Ocena 3.67/5 Łącznie 3 Oceny
Deweloper Ravi Narayanan
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki 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\/*"
            ]
        }
    ]
}