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