Salesforce Colored Favicons
Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.
Qu'est-ce que Salesforce Colored Favicons ?
Salesforce Colored Favicons est une extension Chrome développée par Steve Babula, et sa fonction principale est "Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Salesforce Colored Favicons
Téléchargez les fichiers d'extension Salesforce Colored Favicons au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | Salesforce Colored Favicons |
ID | peohlnebahcddpmfaplmilpkgbkkcdho |
URL Officiel | https://chromewebstore.google.com/detail/salesforce-colored-favico/peohlnebahcddpmfaplmilpkgbkkcdho |
Description | Updates the standard favicon on Salesforce tabs with colored versions to help differentiate between different organizations. |
Taille du Fichier | 12.52 KB |
Nombre d'Installations | 52,029 |
Version Actuelle | 2.0.14 |
Dernière Mise à Jour | 2023-05-26 |
Date de Publication | 2020-06-11 |
Évaluation | 4.56/5 Total 86 Évaluations |
Développeur | Steve Babula |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } ] } |