Munin dark theme
A simple plugin that gives Munin pages a dark theme.
Co to jest Munin dark theme?
Munin dark theme to rozszerzenie Chrome opracowane przez okor, a jego główną funkcją jest „A simple plugin that gives Munin pages a dark theme.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Munin dark theme
Pobierz pliki rozszerzeń Munin dark theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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
Podstawowe informacje o rozszerzeniu
Nazwa | |
ID | fgboabpjnnfofdmknkijjpaolikljolo |
Oficjalny URL | https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo |
Opis | A simple plugin that gives Munin pages a dark theme. |
Rozmiar pliku | 13.98 KB |
Liczba instalacji | 19 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2013-09-24 |
Data Publikacji | 2013-09-24 |
Ocena | 5.00/5 Łącznie 2 Oceny |
Deweloper | okor |
Typ Płatności | free |
Strona Rozszerzenia | http://jasonormand.com/2013/09/22/a-dark-munin-theme/ |
Adres URL Strony Pomocy | https://github.com/okor/munin-dark-chrome-extension |
Obsługiwane Języki | 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" } ] } |