Github dark theme

This extension provides a simple dark theme for github.com

Hvad er Github dark theme?

Github dark theme er en Chrome-udvidelse udviklet af benrlodge, og dens hovedfunktion er "This extension provides a simple dark theme for github.com".

Udvidelsesskærmbilleder

screenshot

Download Github dark theme-udvidelses-CRX-fil

Download Github 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

                        This extension provides a simple dark theme for github.com as an alternative to the default light theme.                    

Grundlæggende oplysninger om udvidelsen

Navn Github dark theme Github dark theme
ID llhodmljacflfmfdhpfkjlohlfgflhga
Officiel URL https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga
Beskrivelse This extension provides a simple dark theme for github.com
Filstørrelse 80.86 KB
Antal Installationer 38
Nuværende Version 1.0
Senest Opdateret 2015-01-17
Udgivelsesdato 2015-01-17
Bedømmelse 2.00/5 Samlet 4 Bedømmelser
Udvikler benrlodge
Betalingsmetode free
Understøttede Sprog en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Github dark theme",
    "description": "This extension provides a simple dark theme for github.com",
    "version": "1.0",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/github.com\/*\/*",
                "https:\/\/www.github.com\/*\/*"
            ],
            "css": [
                "darktheme.css"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "activeTab"
    ]
}