HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
What is HN Dark Mode?
HN Dark Mode is a Chrome extension developed by Innovative Computer Software, and its main feature is "Adds a dark theme for Hacker news (news.ycombinator.com).".
Extension Screenshots
Download HN Dark Mode Extension CRX File
Download HN Dark Mode extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | HN Dark Mode |
ID | abpjflhoidbeaacggmdjoahiakcledna |
Official URL | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
Description | Adds a dark theme for Hacker news (news.ycombinator.com). |
File Size | 169 KB |
Installation Count | 56 |
Current Version | 1.0.3 |
Last Updated | 2022-04-07 |
Publish Date | 2022-03-04 |
Developer | Innovative Computer Software |
[email protected] | |
Payment Type | free |
Extension Website | https://icsusa.com/public/hndarkmode.html |
Help Page URL | https://icsusa.com/public/hndarkmode.html |
Privacy Policy Page URL | https://www.icsusa.com/public/absoluteprivacy.html |
Supported Languages | 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" ] } |