HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
Wat is HN Dark Mode?
HN Dark Mode is een Chrome-extensie ontwikkeld door Innovative Computer Software, en de belangrijkste functie is "Adds a dark theme for Hacker news (news.ycombinator.com).".
Extensie Screenshots
Download het CRX-bestand van de extensie HN Dark Mode
Download HN Dark Mode-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | HN Dark Mode |
ID | abpjflhoidbeaacggmdjoahiakcledna |
Officiële URL | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
Beschrijving | Adds a dark theme for Hacker news (news.ycombinator.com). |
Bestandsgrootte | 169 KB |
Aantal Installaties | 56 |
Huidige Versie | 1.0.3 |
Laatst Bijgewerkt | 2022-04-07 |
Publicatiedatum | 2022-03-04 |
Ontwikkelaar | Innovative Computer Software |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://icsusa.com/public/hndarkmode.html |
Help Pagina-URL | https://icsusa.com/public/hndarkmode.html |
URL van de Privacybeleid Pagina | https://www.icsusa.com/public/absoluteprivacy.html |
Ondersteunde Talen | 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" ] } |