Salesforce Dark Theme

Experience Salesforce ecosystem in dark mode!

Salesforce Dark Theme là gì?

Salesforce Dark Theme là một tiện ích mở rộng Chrome được phát triển bởi https://salesforceblue.com, và tính năng chính của nó là "Experience Salesforce ecosystem in dark mode!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Salesforce Dark Theme

Tải xuống các tệp mở rộng Salesforce Dark Theme dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Salesforce Dark Theme Salesforce Dark Theme
ID ljakpkpdcahaniompbhpabnaafelhdol
URL Chính Thức https://chromewebstore.google.com/detail/salesforce-dark-theme/ljakpkpdcahaniompbhpabnaafelhdol
Mô tả Experience Salesforce ecosystem in dark mode!
Kích Thước Tệp 223 KB
Số Lần Cài Đặt 13,579
Phiên Bản Hiện Tại 1.1.7
Cập Nhật Lần Cuối 2023-11-08
Ngày Phát Hành 2022-09-25
Đánh Giá 4.42/5 Tổng số 24 Đánh Giá
Nhà Phát Triển https://salesforceblue.com
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://salesforceblue.com/salesforce-dark-theme
Ngôn Ngữ Được Hỗ Trợ 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:\/\/*\/*"
            ]
        }
    ]
}