Salesforce Schema Builder Expander
Expands Salesforce schema builder to have more real estate to visualise
Salesforce Schema Builder Expander란 무엇입니까?
Salesforce Schema Builder Expander은(는) https://concret.io에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Expands Salesforce schema builder to have more real estate to visualise"입니다.
확장 프로그램 스크린샷
Salesforce Schema Builder Expander 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Schema is best visualised with more real estate. You start by taking browser in full screen mode and hiding sidebar, this extension additionally hides the top header section, giving you extra 1-2 inches of screen. This extension only starts working when one is on Salesforce schema builder page, otherwise it sits quiet without consuming any machine resources.
확장 프로그램 기본 정보
이름 | Salesforce Schema Builder Expander |
ID | mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
공식 URL | https://chromewebstore.google.com/detail/salesforce-schema-builder/mhmpcpfhhfdoeiejndcmogmnlomkfdkk |
설명 | Expands Salesforce schema builder to have more real estate to visualise |
파일 크기 | 88.53 KB |
설치 횟수 | 1,318 |
현재 버전 | 1.0 |
최근 업데이트 | 2015-02-16 |
출시 날짜 | 2015-02-16 |
평점 | 4.80/5 총 5 개의 평점 |
개발자 | https://concret.io |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
도움말 페이지 URL | http://www.tgerm.com/2014/01/clutter-free-salesforce-schema-builder.html |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Schema Builder Expander", "version": "1.0", "description": "Expands Salesforce schema builder to have more real estate to visualise", "background": { "scripts": [ "background.js" ] }, "page_action": { "default_icon": "expand-19.png", "default_title": "Click to expand Schema Builder" }, "content_scripts": [ { "matches": [ "https:\/\/*.salesforce.com\/_ui\/platform\/schema\/ui\/schemabuilder\/SchemaBuilderUi*" ], "js": [ "jquery-2.0.3.min.js", "contentscript.js" ], "run_at": "document_idle", "all_frames": false } ], "icons": { "48": "expand-48.png", "128": "expand-128.png" }, "web_accessible_resources": [ "jquery-2.0.3.min.map" ], "manifest_version": 2 } |