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是由Joe Ferraro开发的Chrome扩展程序,该扩展的主要功能是“Adds an "S" to the standard Salesforce.com cloud favicon for all sandbox tabs in a Chrome window.”。

扩展截图

screenshot

下载Salesforce.com Sandbox Favicon Extension扩展crx文件

下载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"
            ]
        }
    ]
}