Salesforce Full Screen Code Editor
Adapts the code editor window to full screen for best programming experience.
Salesforce Full Screen Code Editor란 무엇입니까?
Salesforce Full Screen Code Editor은(는) [email protected]에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adapts the code editor window to full screen for best programming experience."입니다.
확장 프로그램 스크린샷
Salesforce Full Screen Code Editor 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Version 1.4 Features: - Editor height adapts to screen size - Name on page title - Support: Apex Classes, Triggers, Components, Visualforce Pages, Email templates - Awesomeness also included! Press the icon at the url bar to start/exit the fullscreen mode. Awesome!
확장 프로그램 기본 정보
이름 | Salesforce Full Screen Code Editor |
ID | ogelohfbpibohagmfaalipekmkmpbjai |
공식 URL | https://chromewebstore.google.com/detail/salesforce-full-screen-co/ogelohfbpibohagmfaalipekmkmpbjai |
설명 | Adapts the code editor window to full screen for best programming experience. |
파일 크기 | 55.83 KB |
설치 횟수 | 302 |
현재 버전 | 1.4 |
최근 업데이트 | 2015-06-09 |
출시 날짜 | 2015-06-09 |
평점 | 3.40/5 총 5 개의 평점 |
개발자 | [email protected] |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Full Screen Code Editor", "version": "1.4", "manifest_version": 2, "description": "Adapts the code editor window to full screen for best programming experience.", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "page_action": { "default_icon": "icon.png" }, "incognito": "split", "content_scripts": [ { "matches": [ "*:\/\/*.salesforce.com\/*" ], "js": [ "content.js" ], "run_at": "document_end" } ], "background": { "scripts": [ "background.js" ] }, "permissions": [ "declarativeContent" ] } |