Salesforce Dark Theme
Experience Salesforce ecosystem in dark mode!
Salesforce Dark Theme란 무엇입니까?
Salesforce Dark Theme은(는) https://salesforceblue.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Experience Salesforce ecosystem in dark mode!"입니다.
확장 프로그램 스크린샷
Salesforce Dark Theme 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Do you have a decent screen time while working on Salesforce? If yes, you can use Salesforce Dark Theme specially curated to give you a vivid dark mode experience across multiple Salesforce products with just one click ensuring you a strain free eyes and increased productivity. Salesforce Dark Theme Supports The Following: ✅ Lightning Experience ✅ Classic Experience ✅ Trailhead ✅ Developer Docs ✅ Component Reference Library ✅ Lightning Design System Library ✅ Knowledge Articles ✅ Discussion Forums
확장 프로그램 기본 정보
이름 | Salesforce Dark Theme |
ID | ljakpkpdcahaniompbhpabnaafelhdol |
공식 URL | https://chromewebstore.google.com/detail/salesforce-dark-theme/ljakpkpdcahaniompbhpabnaafelhdol |
설명 | Experience Salesforce ecosystem in dark mode! |
파일 크기 | 223 KB |
설치 횟수 | 13,579 |
현재 버전 | 1.1.7 |
최근 업데이트 | 2023-11-08 |
출시 날짜 | 2022-09-25 |
평점 | 4.42/5 총 24 개의 평점 |
개발자 | https://salesforceblue.com |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://salesforceblue.com/salesforce-dark-theme |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Salesforce Dark Theme", "manifest_version": 3, "version": "1.1.7", "description": "Experience Salesforce ecosystem in dark mode!", "permissions": [ "storage" ], "homepage_url": "https:\/\/salesforceblue.com\/salesforce-dark-theme", "action": { "default_icon": { "16": "icons\/logo16.png", "24": "icons\/logo24.png", "32": "icons\/logo32.png" }, "default_popup": "popup.html" }, "icons": { "48": "icons\/logo48.png", "128": "icons\/logo128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.force.com\/*", "https:\/\/*.salesforce.com\/*", "https:\/\/www.lightningdesignsystem.com\/*" ], "js": [ "jquery.js", "mymain.js" ], "run_at": "document_start", "all_frames": true } ], "background": { "service_worker": "background.js" }, "web_accessible_resources": [ { "resources": [ "\/css\/*.css" ], "matches": [ "https:\/\/*\/*" ] } ] } |