Salesforce Dark Theme

Experience Salesforce ecosystem in dark mode!

What is Salesforce Dark Theme?

Salesforce Dark Theme is a Chrome extension developed by https://salesforceblue.com, and its main feature is "Experience Salesforce ecosystem in dark mode!".

Extension Screenshots

screenshot

Download Salesforce Dark Theme Extension CRX File

Download Salesforce Dark Theme extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Salesforce Dark Theme Salesforce Dark Theme
ID ljakpkpdcahaniompbhpabnaafelhdol
Official URL https://chromewebstore.google.com/detail/salesforce-dark-theme/ljakpkpdcahaniompbhpabnaafelhdol
Description Experience Salesforce ecosystem in dark mode!
File Size 223 KB
Installation Count 13,579
Current Version 1.1.7
Last Updated 2023-11-08
Publish Date 2022-09-25
Rating 4.42/5 Total 24 Ratings
Developer https://salesforceblue.com
Email [email protected]
Payment Type free
Extension Website https://salesforceblue.com/salesforce-dark-theme
Supported Languages 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:\/\/*\/*"
            ]
        }
    ]
}