Munin dark theme
A simple plugin that gives Munin pages a dark theme.
Hvad er Munin dark theme?
Munin dark theme er en Chrome-udvidelse udviklet af okor, og dens hovedfunktion er "A simple plugin that gives Munin pages a dark theme.".
Udvidelsesskærmbilleder
Download Munin dark theme-udvidelses-CRX-fil
Download Munin dark theme-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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 Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | fgboabpjnnfofdmknkijjpaolikljolo |
| Officiel URL | https://chromewebstore.google.com/detail/munin-dark-theme/fgboabpjnnfofdmknkijjpaolikljolo |
| Beskrivelse | A simple plugin that gives Munin pages a dark theme. |
| Filstørrelse | 13.98 KB |
| Antal Installationer | 19 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2013-09-24 |
| Udgivelsesdato | 2013-09-24 |
| Bedømmelse | 5.00/5 Samlet 2 Bedømmelser |
| Udvikler | okor |
| Betalingsmetode | free |
| Udvidelseswebsted | http://jasonormand.com/2013/09/22/a-dark-munin-theme/ |
| Hjælpeside-URL | https://github.com/okor/munin-dark-chrome-extension |
| Understøttede Sprog | 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"
}
]
} | |