Munin dark theme

A simple plugin that gives Munin pages a dark theme.

Qu'est-ce que Munin dark theme ?

Munin dark theme est une extension Chrome développée par okor, et sa fonction principale est "A simple plugin that gives Munin pages a dark theme.".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Munin dark theme

Téléchargez les fichiers d'extension Munin dark theme au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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                    

Informations de Base sur l'Extension

Nom Munin dark theme Munin dark theme
ID fgboabpjnnfofdmknkijjpaolikljolo
URL Officiel https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo
Description A simple plugin that gives Munin pages a dark theme.
Taille du Fichier 13.98 KB
Nombre d'Installations 19
Version Actuelle 1.0
Dernière Mise à Jour 2013-09-24
Date de Publication 2013-09-24
Évaluation 5.00/5 Total 2 Évaluations
Développeur okor
Type de Paiement free
Site Web de l'Extension http://jasonormand.com/2013/09/22/a-dark-munin-theme/
URL de la Page d'Aide https://github.com/okor/munin-dark-chrome-extension
Langues Prises en Charge 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"
        }
    ]
}