SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
Co to jest SO Dark Chat +?
SO Dark Chat + to rozszerzenie Chrome opracowane przez rlemon, a jego główną funkcją jest „Provides a new dark theme for stackoverflow chat.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia SO Dark Chat +
Pobierz pliki rozszerzeń SO Dark Chat + 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 is an ongoing development effort based on https://github.com/oliversalzburg/se-chat-dark-theme this adds some additional fixes and features (as well as a few modifications) to the existing stackoverflow chat interface.
All new features and repository!
User colours.
Code Highlighting.
Webm/Gifv oneboxing.
Code Editor.
And More! Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bbkjccfnenmgidehjhaabamobpbaaghh |
| Oficjalny URL | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh |
| Opis | Provides a new dark theme for stackoverflow chat. |
| Rozmiar pliku | 6.61 MB |
| Liczba instalacji | 80 |
| Aktualna Wersja | 0.1.5 |
| Ostatnia Aktualizacja | 2019-03-08 |
| Data Publikacji | 2019-03-08 |
| Ocena | 4.85/5 Łącznie 13 Oceny |
| Deweloper | rlemon |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/rlemon/se-chat-dark-theme-plus |
| Adres URL Strony Pomocy | https://github.com/rlemon/se-chat-dark-theme-plus/issues |
| Obsługiwane Języki | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "SO Dark Chat +",
"description": "Provides a new dark theme for stackoverflow chat.",
"version": "0.1.5",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"*:\/\/chat.stackoverflow.com\/*",
"*:\/\/chat.stackexchange.com\/*",
"*:\/\/chat.meta.stackexchange.com\/*"
],
"js": [
"script.js"
],
"css": [
"css\/style.css",
"CodeMirror\/css\/codemirror.css",
"CodeMirror\/css\/monokai.css"
]
}
],
"options_page": "options.html",
"background": {
"scripts": [
"background.js"
]
},
"icons": {
"128": "img\/icon_128.png"
},
"permissions": [
"storage"
],
"web_accessible_resources": [
"js\/*.js",
"css\/*.css",
"images\/*.svg",
"CodeMirror\/*",
"CodeMirror\/*\/*"
]
} | |