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"
]
} | |