Munin dark theme

A simple plugin that gives Munin pages a dark theme.

Cos'è Munin dark theme?

Munin dark theme è un'estensione di Chrome sviluppata da okor, e la sua funzione principale è "A simple plugin that gives Munin pages a dark theme.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Munin dark theme

Scarica i file di estensione Munin dark theme 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

                        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                    

Informazioni di Base sull'Estensione

Nome Munin dark theme Munin dark theme
ID fgboabpjnnfofdmknkijjpaolikljolo
URL Ufficiale https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo
Descrizione A simple plugin that gives Munin pages a dark theme.
Dimensione del File 13.98 KB
Conteggio Installazioni 19
Versione Corrente 1.0
Ultimo Aggiornamento 2013-09-24
Data di Pubblicazione 2013-09-24
Valutazione 5.00/5 Totale 2 Valutazioni
Sviluppatore okor
Tipo di Pagamento free
Sito Web dell'Estensione http://jasonormand.com/2013/09/22/a-dark-munin-theme/
URL della Pagina di Aiuto https://github.com/okor/munin-dark-chrome-extension
Lingue Supportate 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"
        }
    ]
}