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" } ] } |