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