SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
Hvad er SO Dark Chat +?
SO Dark Chat + er en Chrome-udvidelse udviklet af rlemon, og dens hovedfunktion er "Provides a new dark theme for stackoverflow chat.".
Udvidelsesskærmbilleder
Download SO Dark Chat +-udvidelses-CRX-fil
Download SO Dark Chat +-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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! Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | bbkjccfnenmgidehjhaabamobpbaaghh |
| Officiel URL | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh |
| Beskrivelse | Provides a new dark theme for stackoverflow chat. |
| Filstørrelse | 6.61 MB |
| Antal Installationer | 80 |
| Nuværende Version | 0.1.5 |
| Senest Opdateret | 2019-03-08 |
| Udgivelsesdato | 2019-03-08 |
| Bedømmelse | 4.85/5 Samlet 13 Bedømmelser |
| Udvikler | rlemon |
| Betalingsmetode | free |
| Udvidelseswebsted | https://github.com/rlemon/se-chat-dark-theme-plus |
| Hjælpeside-URL | https://github.com/rlemon/se-chat-dark-theme-plus/issues |
| Understøttede Sprog | 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\/*\/*"
]
} | |