Night Mode

Enjoy the web in the new night colors and protect your eyes

什麼是Night Mode?

Night Mode是由SmartLink開發的Chrome擴展程式,該擴展的主要功能是“Enjoy the web in the new night colors and protect your eyes”。

擴展截圖

screenshot

下載Night Mode擴展crx文件

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

擴展使用說明

                        Night Mode

Version 2.0.0
- Fixed style issues after Instagram latest update.
- Adopted native DarkTheme from the Instagram app.
Enjoy !

This extension was developed Independently by SmartLink and not affiliated with Instagram Inc.                    

擴展基本資訊

名稱 Night Mode Night Mode
ID bkiiljdcpccihhoigelmohcfkehdnjej
官方網址 https://chromewebstore.google.com/detail/night-mode/bkiiljdcpccihhoigelmohcfkehdnjej
簡介 Enjoy the web in the new night colors and protect your eyes
檔案大小 42.85 KB
安裝次數 152,483
目前版本 2.0.0
更新時間 2022-06-07
上架時間 2020-05-16
評分 3.84/5 共 129 次評分
開發者 SmartLink
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Night Mode",
    "description": "Enjoy the web in the new night colors and protect your eyes",
    "version": "2.0.0",
    "author": "SmartLink",
    "browser_action": {
        "default_title": "Have a good day"
    },
    "content_security_policy": "script-src 'self' https:\/\/www.google-analytics.com; object-src 'self'",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "background": {
        "page": "background.html",
        "persistent": true
    },
    "icons": {
        "16": "imgs\/icon16.png",
        "48": "imgs\/icon48.png",
        "128": "imgs\/icon128.png"
    },
    "web_accessible_resources": [
        "nightmode.css"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.instagram.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}