Salesforce Colored Favicons

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

Salesforce Colored Favicons là gì?

Salesforce Colored Favicons là một tiện ích mở rộng Chrome được phát triển bởi Steve Babula, và tính năng chính của nó là "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Colored Favicons

Tải xuống các tệp mở rộng Salesforce Colored Favicons dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Colored Favicons Salesforce Colored Favicons
ID peohlnebahcddpmfaplmilpkgbkkcdho
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-colored-favico/peohlnebahcddpmfaplmilpkgbkkcdho
Mô tả Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.
Kích Thước Tệp 12.52 KB
Số Lần Cài Đặt 52,029
Phiên Bản Hiện Tại 2.0.14
Cập Nhật Lần Cuối 2023-05-26
Ngày Phát Hành 2020-06-11
Đánh Giá 4.56/5 Tổng số 86 Đánh Giá
Nhà Phát Triển Steve Babula
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}