Salesforce.com Sandbox Favicon Extension

Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

Salesforce.com Sandbox Favicon Extensionคืออะไร?

Salesforce.com Sandbox Favicon Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Joe Ferraro และคุณลักษณะหลักของมันคือ "Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window."

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce.com Sandbox Favicon Extension

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

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

                        Superimposes an "S" on the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.

UPDATE: also adds a prefix to the Salesforce.com tab, e.g.: (na13) Account: ABC Textiles

UPDATE 2: pod prefix in the tab title is now optional (off by default). right click the icon and select "options" to enable/disable the server pod option.                    

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

ชื่อ Salesforce.com Sandbox Favicon Extension Salesforce.com Sandbox Favicon Extension
ID nkfllgjejgfgcddfccnijhndhdmjkamf
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/salesforcecom-sandbox-fav/nkfllgjejgfgcddfccnijhndhdmjkamf
คำอธิบาย Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.
ขนาดไฟล์ 40.93 KB
จำนวนการติดตั้ง 3,000
เวอร์ชันปัจจุบัน 1.6
อัปเดตครั้งล่าสุด 2015-07-20
วันที่เผยแพร่ 2015-07-20
คะแนน 4.72/5 รวมทั้งหมด 64 คะแนน
ผู้พัฒนา Joe Ferraro
ประเภทการชำระเงิน free
URL หน้าช่วยเหลือ https://github.com/joeferraro/sfdc_sbox_chrome_extension
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Salesforce.com Sandbox Favicon Extension",
    "version": "1.6",
    "description": "Adds an \"S\" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.",
    "browser_action": {
        "default_icon": "salesforce.png"
    },
    "permissions": [
        "tabs",
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.visual.force.com\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ]
        }
    ]
}