Munin dark theme
A simple plugin that gives Munin pages a dark theme.
什么是Munin dark theme?
Munin dark theme是由okor开发的Chrome扩展程序,该扩展的主要功能是“A simple plugin that gives Munin pages a dark theme.”。
扩展截图
下载Munin dark theme扩展crx文件
下载Munin dark theme扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | fgboabpjnnfofdmknkijjpaolikljolo |
官方URL | https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo |
简介 | A simple plugin that gives Munin pages a dark theme. |
文件大小 | 13.98 KB |
安装次数 | 19 |
当前版本 | 1.0 |
更新时间 | 2013-09-24 |
上架时间 | 2013-09-24 |
评分 | 5.00/5 共2次评分 |
开发者 | okor |
付费类型 | free |
扩展官网 | http://jasonormand.com/2013/09/22/a-dark-munin-theme/ |
帮助页面URL | https://github.com/okor/munin-dark-chrome-extension |
支持的语言 | 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" } ] } |