Github dark theme

This extension provides a simple dark theme for github.com

Cos'è Github dark theme?

Github dark theme è un'estensione di Chrome sviluppata da benrlodge, e la sua funzione principale è "This extension provides a simple dark theme for github.com".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Github dark theme

Scarica i file di estensione Github dark theme in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Github dark theme Github dark theme
ID llhodmljacflfmfdhpfkjlohlfgflhga
URL Ufficiale https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga
Descrizione This extension provides a simple dark theme for github.com
Dimensione del File 80.86 KB
Conteggio Installazioni 38
Versione Corrente 1.0
Ultimo Aggiornamento 2015-01-17
Data di Pubblicazione 2015-01-17
Valutazione 2.00/5 Totale 4 Valutazioni
Sviluppatore benrlodge
Tipo di Pagamento free
Lingue Supportate 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"
    ]
}