Salesforce Dark Theme

Experience Salesforce ecosystem in dark mode!

Salesforce Dark Themeคืออะไร?

Salesforce Dark Theme เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://salesforceblue.com และคุณลักษณะหลักของมันคือ "Experience Salesforce ecosystem in dark mode!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Salesforce Dark Theme

ดาวน์โหลดไฟล์ส่วนขยาย Salesforce Dark Theme ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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