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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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) |
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\/*" ] } ] } |