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”。
扩展截图
下载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. 扩展基本信息
| 名称 | |
| ID | llhodmljacflfmfdhpfkjlohlfgflhga |
| 官方URL | 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"
]
} | |