Salesforce.com Developer Console Extension
SalesForce.com Developer Console Extension
Salesforce.com Developer Console Extension란 무엇입니까?
Salesforce.com Developer Console Extension은(는) Radek Baxa에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "SalesForce.com Developer Console Extension"입니다.
확장 프로그램 스크린샷
Salesforce.com Developer Console Extension 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Salesforce.com Developer Console Extension makes writing code more pleasant. Open source: https://bitbucket.org/RadekBaxa/sfdcdcextension Extension adds: CTRL + L shortcut for go to line number. CTRL + Q shortcut for go to last edited place Optionally disable back/forward key shortcut. Next features coming soon...
확장 프로그램 기본 정보
이름 | Salesforce.com Developer Console Extension |
ID | iibaelocaoaknnnhmlmliamfjifnjiff |
공식 URL | https://chromewebstore.google.com/detail/salesforcecom-developer-c/iibaelocaoaknnnhmlmliamfjifnjiff |
설명 | SalesForce.com Developer Console Extension |
파일 크기 | 169 KB |
설치 횟수 | 317 |
현재 버전 | 0.1.2 |
최근 업데이트 | 2022-09-19 |
출시 날짜 | 2016-09-25 |
평점 | 5.00/5 총 2 개의 평점 |
개발자 | Radek Baxa |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://bitbucket.org/RadekBaxa/sfdcdcextension |
도움말 페이지 URL | https://bitbucket.org/RadekBaxa/sfdcdcextension/issues |
개인정보 보호 정책 페이지 URL | https://www.radekbaxa.cz/chrome-extension-privacy-policy.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Salesforce.com Developer Console Extension", "short_name": "SFDC DC Extension", "version": "0.1.2", "default_locale": "en", "description": "__MSG_ManifestDescription__", "icons": { "256": "img\/256_cloud-check.png", "128": "img\/128_cloud-check.png", "64": "img\/64_cloud-check.png", "32": "img\/32_cloud-check.png", "24": "img\/24_cloud-check.png", "16": "img\/16_cloud-check.png" }, "browser_action": { "default_title": "SFDC DC Extension", "default_icon": "\/img\/16_cloud-check.png", "default_popup": "popup.html" }, "author": "Radek Baxa", "options_page": "options.html", "options_ui": { "chrome_style": false, "page": "options.html" }, "content_scripts": [ { "matches": [ "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*" ], "js": [ "jquery-1.11.3.min.js", "sfdcdc-content-script.js" ] } ], "web_accessible_resources": [ "img\/*.png", "dev-console-goto-actions.js", "prevent-default-back-forward-actions.js" ], "permissions": [ "storage", "https:\/\/*\/_ui\/common\/apex\/debug\/ApexCSIPage*" ] } |