RevealIt
Visual Cue to identify your Salesforce.com instance.
RevealIt란 무엇입니까?
RevealIt은(는) Naveen Hiremath에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Visual Cue to identify your Salesforce.com instance."입니다.
확장 프로그램 스크린샷
RevealIt 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Most times working on Salesforce.com implementation brings with it the need to open multiple tabs, to better organize our work, and it is often seen that logging into both sandbox and production instance is a common norm. Additionally, to better organize the multitude of tabs and to preserve tab real estate, pinning of tabs is undertaken. However, Salesforce.com does not help us in providing an obvious visual cue to distinguish between a sandbox and production org via tabs. This extension strives for the following: - Help to identify sandbox v/s production instances among the web browser tabs - Help to visually identify sandbox v/s production bookmarks, if any - Save time and to make Salesforce.com a more comfortable experience Version: 1.1 - Better icons used to denote sandbox and production instance - Fixed display of icons when development mode has been enabled Version: 1.2 - Javascript optimization - Better support for custom domain names Version: 1.3 - Bug fix Version 1.4 - Winter 13 Release updates
확장 프로그램 기본 정보
이름 | |
ID | kchnjbaogbecbpleppldlppkhiibgjcf |
공식 URL | https://chrome.google.com/webstore/detail/revealit/kchnjbaogbecbpleppldlppkhiibgjcf |
설명 | Visual Cue to identify your Salesforce.com instance. |
파일 크기 | 23.14 KB |
설치 횟수 | 40 |
현재 버전 | 1.4 |
최근 업데이트 | 2012-09-13 |
출시 날짜 | 2012-09-13 |
평점 | 4.85/5 총 13 개의 평점 |
개발자 | Naveen Hiremath |
결제 유형 | free |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx", "name": "RevealIt", "version": "1.4", "manifest_version": 2, "description": "Visual Cue to identify your Salesforce.com instance.", "icons": { "16": "revealIt-16.png", "48": "revealIt-48.png", "128": "revealIt-128.png" }, "background": { "scripts": [ "background.js" ] }, "content_scripts": [ { "matches": [ "https:\/\/salesforce.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/*.visual.force.com\/*" ], "js": [ "contentscript.js" ] } ], "permissions": [ "tabs" ], "browser_action": { "default_icon": "revealIt-22.png", "default_title": "Discover your cloud" } } |