Workbench Extension
Add functionalities to Workbench!
Workbench Extension란 무엇입니까?
Workbench Extension은(는) Baptiste BIEBER에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Add functionalities to Workbench!"입니다.
확장 프로그램 스크린샷
Workbench Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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.
확장 프로그램 기본 정보
이름 | Workbench Extension |
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\/*" ] } |