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 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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\/*" ] } ] } |