Github dark theme
This extension provides a simple dark theme for github.com
Co to jest Github dark theme?
Github dark theme to rozszerzenie Chrome opracowane przez benrlodge, a jego główną funkcją jest „This extension provides a simple dark theme for github.com”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Github dark theme
Pobierz pliki rozszerzeń Github dark theme w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension provides a simple dark theme for github.com as an alternative to the default light theme. Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | llhodmljacflfmfdhpfkjlohlfgflhga |
| Oficjalny URL | https://chrome.google.com/webstore/detail/github-dark-theme/llhodmljacflfmfdhpfkjlohlfgflhga |
| Opis | This extension provides a simple dark theme for github.com |
| Rozmiar pliku | 80.86 KB |
| Liczba instalacji | 38 |
| Aktualna Wersja | 1.0 |
| Ostatnia Aktualizacja | 2015-01-17 |
| Data Publikacji | 2015-01-17 |
| Ocena | 2.00/5 Łącznie 4 Oceny |
| Deweloper | benrlodge |
| Typ Płatności | free |
| Obsługiwane Języki | 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"
]
} | |