Munin dark theme

A simple plugin that gives Munin pages a dark theme.

What is Munin dark theme?

Munin dark theme is a Chrome extension developed by okor, and its main feature is "A simple plugin that gives Munin pages a dark theme.".

Extension Screenshots

screenshot

Download Munin dark theme Extension CRX File

Download Munin dark theme extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Munin dark theme Munin dark theme
ID fgboabpjnnfofdmknkijjpaolikljolo
Official URL https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo
Description A simple plugin that gives Munin pages a dark theme.
File Size 13.98 KB
Installation Count 19
Current Version 1.0
Last Updated 2013-09-24
Publish Date 2013-09-24
Rating 5.00/5 Total 2 Ratings
Developer okor
Payment Type free
Extension Website http://jasonormand.com/2013/09/22/a-dark-munin-theme/
Help Page URL https://github.com/okor/munin-dark-chrome-extension
Supported Languages 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"
        }
    ]
}