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.」です。
拡張機能のスクリーンショット
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 |
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 |
Eメール | [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\/*" ] } ] } |