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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Salesforce Colored Favicons एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}