Night Owl - Smart Dark Mode

Instantly transform websites into a comfortable, eye-friendly dark mode experience.

什麼是Night Owl - Smart Dark Mode?

Night Owl - Smart Dark Mode是由Music For Trees開發的Chrome擴展程式,該擴展的主要功能是“Instantly transform websites into a comfortable, eye-friendly dark mode experience.”。

擴展截圖

screenshot

下載Night Owl - Smart Dark Mode擴展crx文件

下載Night Owl - Smart Dark Mode擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        Dark mode for any website!

Many websites don't have a dark mode option, so we made Night Owl. Click the owl icon to turn on dark mode for any site, and the extension will remember your preferences. Enjoy a comfortable browsing experience with your favorite sites in dark mode!                    

擴展基本資訊

名稱 Night Owl - Smart Dark Mode Night Owl - Smart Dark Mode
ID ifflcmkgdhiopibdbljombcjfeeldhnp
官方網址 https://chromewebstore.google.com/detail/night-owl-smart-dark-mode/ifflcmkgdhiopibdbljombcjfeeldhnp
簡介 Instantly transform websites into a comfortable, eye-friendly dark mode experience.
檔案大小 6.55 KB
安裝次數 55
目前版本 1.0
更新時間 2023-04-13
上架時間 2023-04-13
評分 5.00/5 共 2 次評分
開發者 Music For Trees
電子郵箱 [email protected]
付費類型 free
隱私政策頁面URL https://policies.google.com/privacy
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Night Owl - Smart Dark Mode",
    "version": "1.0",
    "description": "Instantly transform websites into a comfortable, eye-friendly dark mode experience.",
    "action": {
        "default_icon": {
            "16": "icon16.png",
            "48": "icon48.png",
            "128": "icon128.png"
        }
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start"
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}