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
公式URL 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
Eメール [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"
    ]
}