Workbench Extension
Add functionalities to Workbench!
什么是Workbench Extension?
Workbench Extension是由Baptiste BIEBER开发的Chrome扩展程序,该扩展的主要功能是“Add functionalities to Workbench!”。
扩展截图
下载Workbench Extension扩展crx文件
下载Workbench Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Some new functionalities form the Salesforce Workbench application (https://workbench.developerforce.com/):
- Resize the window
- Query page: checkbox for fields selection. Paste a request, click "Refresh" => that fill the form. Searching filter. Download displayed result (JSON & CSV)
- Execute page: saving scripts to load easier later.
2023-05-04 (v1.5.1):
- Remove cookies & tabs permissions
2018-10-30 (v1.5.0):
Functionality:
- Save script into the Execute page
2018-10-26 (v1.4.0):
Functionality:
- Download the result displayed on the page. Two format: JSON & CSV
Bug:
- After query, field not displayed. 扩展基本信息
| 名称 | |
| ID | bdmeigkhhgcjckkgiiipehdagjdlkddj |
| 官方URL | https://chromewebstore.google.com/detail/workbench-extension/bdmeigkhhgcjckkgiiipehdagjdlkddj |
| 简介 | Add functionalities to Workbench! |
| 文件大小 | 196 KB |
| 安装次数 | 155 |
| 当前版本 | 1.5.1 |
| 更新时间 | 2023-05-06 |
| 上架时间 | 2018-10-30 |
| 开发者 | Baptiste BIEBER |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/baptistebieber/workbench-extension |
| 支持的语言 | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "Workbench Extension",
"version": "1.5.1",
"author": "Baptiste BIEBER",
"description": "Add functionalities to Workbench!",
"homepage_url": "https:\/\/github.com\/baptistebieber\/workbench-extension",
"icons": {
"16": "img\/icon-16.png",
"32": "img\/icon-32.png",
"48": "img\/icon-48.png",
"128": "img\/icon-128.png"
},
"action": {
"default_icon": "img\/icon-16.png"
},
"content_scripts": [
{
"matches": [
"https:\/\/workbench.developerforce.com\/*"
],
"js": [
"js\/jquery.min.js"
],
"css": [
"css\/style.css"
]
},
{
"matches": [
"https:\/\/workbench.developerforce.com\/query.php*"
],
"js": [
"js\/query.js"
],
"css": [
"css\/query.css"
]
},
{
"matches": [
"https:\/\/workbench.developerforce.com\/execute.php*"
],
"js": [
"js\/execute.js"
],
"css": [
"css\/execute.css"
]
}
],
"host_permissions": [
"https:\/\/workbench.developerforce.com\/*"
]
} | |