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. 擴展基本資訊
| 名稱 | |
| ID | fjlkmmgolajmcippgjfabpjingepjgad |
| 官方網址 | 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\/*"
]
}
]
} | |