Github dark theme
This extension provides a simple dark theme for github.com
Apa itu Github dark theme?
Github dark theme adalah ekstensi Chrome yang dikembangkan oleh benrlodge, dan fitur utamanya adalah "This extension provides a simple dark theme for github.com".
Screenshot Ekstensi
Unduh Berkas CRX Ekstensi Github dark theme
Unduh file ekstensi Github dark theme dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.
Petunjuk Penggunaan Ekstensi
This extension provides a simple dark theme for github.com as an alternative to the default light theme. Informasi Dasar Ekstensi
| Nama | |
| ID | llhodmljacflfmfdhpfkjlohlfgflhga |
| URL Resmi | https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga |
| Deskripsi | This extension provides a simple dark theme for github.com |
| Ukuran File | 80.86 KB |
| Jumlah Instalasi | 38 |
| Versi Saat Ini | 1.0 |
| Terakhir Diperbarui | 2015-01-17 |
| Tanggal Publikasi | 2015-01-17 |
| Penilaian | 2.00/5 Total 4 Penilaian |
| Pengembang | benrlodge |
| Tipe Pembayaran | free |
| Bahasa yang Didukung | 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"
]
} | |