HN Dark Mode

Adds a dark theme for Hacker news (news.ycombinator.com).

O que é HN Dark Mode?

HN Dark Mode é uma extensão do Chrome desenvolvida por Innovative Computer Software, e sua principal característica é "Adds a dark theme for Hacker news (news.ycombinator.com).".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão HN Dark Mode

Baixe arquivos de extensão HN Dark Mode no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome HN Dark Mode HN Dark Mode
ID abpjflhoidbeaacggmdjoahiakcledna
URL Oficial https://chromewebstore.google.com/detail/hn-dark-mode/abpjflhoidbeaacggmdjoahiakcledna
Descrição Adds a dark theme for Hacker news (news.ycombinator.com).
Tamanho do Arquivo 169 KB
Contagem de Instalações 56
Versão Atual 1.0.3
Última Atualização 2022-04-07
Data de Publicação 2022-03-04
Desenvolvedor Innovative Computer Software
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://icsusa.com/public/hndarkmode.html
URL da Página de Ajuda https://icsusa.com/public/hndarkmode.html
URL da Página de Política de Privacidade https://www.icsusa.com/public/absoluteprivacy.html
Idiomas Suportados 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"
    ]
}