Open Salesforce Developer Console
Opens the Salesforce developer console from your currently opened Org
什麼是Open Salesforce Developer Console?
Open Salesforce Developer Console是由john.hutchins開發的Chrome擴展程式,該擴展的主要功能是“Opens the Salesforce developer console from your currently opened Org”。
擴展截圖
下載Open Salesforce Developer Console擴展crx文件
下載Open Salesforce Developer Console擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Allows you to open the Salesforce developer console with one click. This aims to simplify your workflow to make opening the dev console a 1 click process! 擴展基本資訊
| 名稱 | |
| ID | dkjpcmmbikopcnmhfnhammoejckdgajb |
| 官方網址 | https://chromewebstore.google.com/detail/open-salesforce-developer/dkjpcmmbikopcnmhfnhammoejckdgajb |
| 簡介 | Opens the Salesforce developer console from your currently opened Org |
| 檔案大小 | 10.94 KB |
| 安裝次數 | 84 |
| 目前版本 | 3.2 |
| 更新時間 | 2020-07-29 |
| 上架時間 | 2020-04-20 |
| 評分 | 5.00/5 共 1 次評分 |
| 開發者 | john.hutchins |
| 電子郵箱 | [email protected] |
| 付費類型 | free |
| 說明頁面URL | https://github.com/johnhutchins/openDevConsole |
| 支援的語言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Open Salesforce Developer Console",
"version": "3.2",
"manifest_version": 2,
"description": "Opens the Salesforce developer console from your currently opened Org",
"background": {
"persistent": false,
"scripts": [
"background_script.js"
]
},
"permissions": [
"https:\/\/*.salesforce.com\/",
"activeTab",
"tabs"
],
"browser_action": {
"default_icon": "icons\/48.png"
},
"commands": {
"_execute_browser_action": {
"suggested_key": {
"windows": "Ctrl+Shift+Y",
"mac": "Command+Shift+Y",
"chromeos": "Ctrl+Shift+Y",
"linux": "Ctrl+Shift+Y"
}
}
},
"icons": {
"16": "icons\/16.png",
"48": "icons\/48.png",
"128": "icons\/128.png"
}
} | |