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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
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!
확장 프로그램 기본 정보
이름 | Open Salesforce Developer Console |
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" } } |