HN Dark Mode

Adds a dark theme for Hacker news (news.ycombinator.com).

什麼是HN Dark Mode?

HN Dark Mode是由Innovative Computer Software開發的Chrome擴展程式,該擴展的主要功能是“Adds a dark theme for Hacker news (news.ycombinator.com).”。

擴展截圖

screenshot

下載HN Dark Mode擴展crx文件

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

擴展使用說明

                        Dark Mode can be configured to be always on or to match the operating system's dark/light theme.

This extension only runs on the Hacker News site. It will not collect or transmit ANY of your browsing activity.                    

擴展基本資訊

名稱 HN Dark Mode HN Dark Mode
ID abpjflhoidbeaacggmdjoahiakcledna
官方網址 https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna
簡介 Adds a dark theme for Hacker news (news.ycombinator.com).
檔案大小 169 KB
安裝次數 56
目前版本 1.0.3
更新時間 2022-04-07
上架時間 2022-03-04
開發者 Innovative Computer Software
電子郵箱 [email protected]
付費類型 free
擴展官網 https://icsusa.com/public/hndarkmode.html
說明頁面URL https://icsusa.com/public/hndarkmode.html
隱私政策頁面URL https://www.icsusa.com/public/absoluteprivacy.html
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "default_locale": "en",
    "name": "__MSG_extension_name__",
    "description": "__MSG_extension_description__",
    "version": "1.0.3",
    "icons": {
        "48": "images\/HackerNewsColor-48.png",
        "96": "images\/HackerNewsColor-96.png",
        "128": "images\/HackerNewsColor-128.png",
        "256": "images\/HackerNewsColor-256.png",
        "512": "images\/HackerNewsColor-512.png"
    },
    "background": {
        "service_worker": "background.js",
        "_scripts": [
            "background.js"
        ],
        "_persistent": false
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "css": [
                "style.css"
            ],
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "permissions": [
        "storage"
    ]
}