BlaCKout

Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.

ما هو BlaCKout؟

BlaCKout هو إضافة Chrome تم تطويرها بواسطة https://activebridge.org، والميزة الرئيسية لها هي "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة BlaCKout

قم بتنزيل ملفات الامتداد BlaCKout بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        Extension does not invent a wheel
It just utilize chrome force dark mode flag and
adds ability to whitelist websites by just clicking on extension or using keyboard shortcut.

Advantages:

- Open Source
- Lightweight (5Kb)
- Utilizes browser builtin dark mode

Additional feature is tabless mode. It forces new tabs to be opened in new window

https://github.com/galulex/deepdark                    

معلومات أساسية عن التمديد

الاسم BlaCKout BlaCKout
ID epmieacohbnladjdcjinfajhepbfaakl
عنوان URL الرسمي https://chromewebstore.google.com/detail/blackout/epmieacohbnladjdcjinfajhepbfaakl
الوصف Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.
حجم الملف 17.33 KB
عدد التثبيتات 664
النسخة الحالية 1.8
آخر تحديث 2024-02-19
تاريخ النشر 2022-12-23
تقييم 5.00/5 مجموع تقييمات 4
المطور https://activebridge.org
البريد الإلكتروني [email protected]
نوع الدفع free
موقع الإضافة https://github.com/galulex/deepdark
عنوان صفحة المساعدة https://github.com/galulex/deepdark/issues
اللغات المدعومة en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "BlaCKout",
    "description": "Enable deep dark mode for web pages and dev tools. Saves energy with OLED screens like on Mac M1 Pro.",
    "version": "1.8",
    "icons": {
        "128": "128.png"
    },
    "action": {
        "default_title": "Toggle Dark Mode"
    },
    "devtools_page": "devtools.html",
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "css": [
                "dark.css"
            ],
            "js": [
                "page.js"
            ],
            "match_about_blank": true,
            "run_at": "document_start"
        }
    ],
    "options_ui": {
        "page": "options.html",
        "open_in_tab": false
    },
    "commands": {
        "toggle": {
            "suggested_key": "Ctrl+Shift+D",
            "mac": "Command+Shift+D",
            "description": "Toggle Dark Mode"
        }
    }
}