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.
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } ] } |