Github dark theme

This extension provides a simple dark theme for github.com

什麼是Github dark theme?

Github dark theme是由benrlodge開發的Chrome擴展程式,該擴展的主要功能是“This extension provides a simple dark theme for github.com”。

擴展截圖

screenshot

下載Github dark theme擴展crx文件

下載Github dark theme擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Github dark theme Github dark theme
ID llhodmljacflfmfdhpfkjlohlfgflhga
官方網址 https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga
簡介 This extension provides a simple dark theme for github.com
檔案大小 80.86 KB
安裝次數 38
目前版本 1.0
更新時間 2015-01-17
上架時間 2015-01-17
評分 2.00/5 共 4 次評分
開發者 benrlodge
付費類型 free
支援的語言 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"
    ]
}