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 |
| 官方URL | 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"
}
} | |