HN Dark Mode
Adds a dark theme for Hacker news (news.ycombinator.com).
Cos'è HN Dark Mode?
HN Dark Mode è un'estensione di Chrome sviluppata da Innovative Computer Software, e la sua funzione principale è "Adds a dark theme for Hacker news (news.ycombinator.com).".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione HN Dark Mode
Scarica i file di estensione HN Dark Mode in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | HN Dark Mode |
ID | abpjflhoidbeaacggmdjoahiakcledna |
URL Ufficiale | https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna |
Descrizione | Adds a dark theme for Hacker news (news.ycombinator.com). |
Dimensione del File | 169 KB |
Conteggio Installazioni | 56 |
Versione Corrente | 1.0.3 |
Ultimo Aggiornamento | 2022-04-07 |
Data di Pubblicazione | 2022-03-04 |
Sviluppatore | Innovative Computer Software |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | https://icsusa.com/public/hndarkmode.html |
URL della Pagina di Aiuto | https://icsusa.com/public/hndarkmode.html |
URL della Pagina della Politica sulla Privacy | https://www.icsusa.com/public/absoluteprivacy.html |
Lingue Supportate | 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" ] } |