Salesforce Colored Favicons

Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.

什么是Salesforce Colored Favicons?

Salesforce Colored Favicons是由Steve Babula开发的Chrome扩展程序,该扩展的主要功能是“Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.”。

扩展截图

screenshot

下载Salesforce Colored Favicons扩展crx文件

下载Salesforce Colored Favicons扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        Supports both Classic and Lightning Experiences and includes separate icons for production, sandbox, and develop/scratch orgs.

To use the extension, simply navigate to a Salesforce org and the extension will automatically select a random color for it then update the favicon with that color. Now every time you visit that org, the colored favicon will be displayed instead of the default Salesforce favicon. At this point you can also visit the options page to change the color for any org you've visited.                    

扩展基本信息

名称 Salesforce Colored Favicons Salesforce Colored Favicons
ID peohlnebahcddpmfaplmilpkgbkkcdho
官方URL https://chromewebstore.google.com/detail/salesforce-colored-favico/peohlnebahcddpmfaplmilpkgbkkcdho
简介 Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.
文件大小 12.52 KB
安装次数 52,029
当前版本 2.0.14
更新时间 2023-05-26
上架时间 2020-06-11
评分 4.56/5 共86次评分
开发者 Steve Babula
电子邮箱 [email protected]
付费类型 free
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Salesforce Colored Favicons",
    "description": "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.",
    "version": "2.0.14",
    "icons": {
        "128": "icon128.png"
    },
    "permissions": [
        "storage"
    ],
    "options_page": "options.html",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.visualforce.com\/*",
                "https:\/\/*.salesforce.mil\/*",
                "https:\/\/*.crmforce.mil\/*",
                "https:\/\/*.sandbox.my.salesforce-sites.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "favicon.ico",
                "favicon-s.ico",
                "favicon-dx.ico"
            ],
            "matches": [
                "https:\/\/*.salesforce.com\/*",
                "https:\/\/*.force.com\/*",
                "https:\/\/*.visualforce.com\/*",
                "https:\/\/*.salesforce.mil\/*",
                "https:\/\/*.crmforce.mil\/*",
                "https:\/\/*.sandbox.my.salesforce-sites.com\/*"
            ]
        }
    ]
}