HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
Was ist HN Dark Mode?
HN Dark Mode ist eine Chrome-Erweiterung, die von Innovative Computer Software entwickelt wurde, und ihr Hauptmerkmal ist "Adds a dark theme for Hacker news (news.ycombinator.com).".
Erweiterungsscreenshots
HN Dark Mode-Erweiterungs-CRX-Datei herunterladen
Laden Sie HN Dark Mode-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | abpjflhoidbeaacggmdjoahiakcledna |
| Offizielle URL | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
| Beschreibung | Adds a dark theme for Hacker news (news.ycombinator.com). |
| Dateigröße | 169 KB |
| Installationsanzahl | 56 |
| Aktuelle Version | 1.0.3 |
| Letztes Update | 2022-04-07 |
| Veröffentlichungsdatum | 2022-03-04 |
| Entwickler | Innovative Computer Software |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://icsusa.com/public/hndarkmode.html |
| Hilfeseite URL | https://icsusa.com/public/hndarkmode.html |
| URL der Datenschutzrichtlinien-Seite | https://www.icsusa.com/public/absoluteprivacy.html |
| Unterstützte Sprachen | 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"
]
} | |