RevealIt

Visual Cue to identify your Salesforce.com instance.

RevealItคืออะไร?

RevealIt เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Naveen Hiremath และคุณลักษณะหลักของมันคือ "Visual Cue to identify your Salesforce.com instance."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย RevealIt

ดาวน์โหลดไฟล์ส่วนขยาย RevealIt ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ RevealIt RevealIt
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"
    }
}