Munin dark theme

A simple plugin that gives Munin pages a dark theme.

O que é Munin dark theme?

Munin dark theme é uma extensão do Chrome desenvolvida por okor, e sua principal característica é "A simple plugin that gives Munin pages a dark theme.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Munin dark theme

Baixe arquivos de extensão Munin dark theme 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

                        The plugin will attempt to detect if the current page is one served up by Munin. If it's a Munin page, it will inject a small amount of CSS, effectively creating a dark theme for Munin.

Get the source on Github: https://github.com/okor/munin-dark-chrome-extension                    

Informações Básicas da Extensão

Nome Munin dark theme Munin dark theme
ID fgboabpjnnfofdmknkijjpaolikljolo
URL Oficial https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo
Descrição A simple plugin that gives Munin pages a dark theme.
Tamanho do Arquivo 13.98 KB
Contagem de Instalações 19
Versão Atual 1.0
Última Atualização 2013-09-24
Data de Publicação 2013-09-24
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor okor
Tipo de Pagamento free
Site da Extensão http://jasonormand.com/2013/09/22/a-dark-munin-theme/
URL da Página de Ajuda https://github.com/okor/munin-dark-chrome-extension
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Munin dark theme",
    "description": "A simple plugin that gives Munin pages a dark theme.",
    "version": "1.0",
    "homepage_url": "http:\/\/jasonormand.com\/2013\/09\/22\/a-dark-munin-theme\/",
    "manifest_version": 2,
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "web_accessible_resources": [
        "munin-dark-theme.css"
    ],
    "content_scripts": [
        {
            "js": [
                "munin-dark-theme.js"
            ],
            "matches": [
                "*:\/\/*\/*"
            ],
            "run_at": "document_end"
        }
    ]
}