SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
Wat is SO Dark Chat +?
SO Dark Chat + is een Chrome-extensie ontwikkeld door rlemon, en de belangrijkste functie is "Provides a new dark theme for stackoverflow chat.".
Extensie Screenshots
Download het CRX-bestand van de extensie SO Dark Chat +
Download SO Dark Chat +-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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! Basisinformatie over de Extensie
| Naam | |
| ID | bbkjccfnenmgidehjhaabamobpbaaghh |
| Officiële URL | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh |
| Beschrijving | Provides a new dark theme for stackoverflow chat. |
| Bestandsgrootte | 6.61 MB |
| Aantal Installaties | 80 |
| Huidige Versie | 0.1.5 |
| Laatst Bijgewerkt | 2019-03-08 |
| Publicatiedatum | 2019-03-08 |
| Beoordeling | 4.85/5 Totaal 13 Beoordelingen |
| Ontwikkelaar | rlemon |
| Betalingswijze | free |
| Extensiewebsite | https://github.com/rlemon/se-chat-dark-theme-plus |
| Help Pagina-URL | https://github.com/rlemon/se-chat-dark-theme-plus/issues |
| Ondersteunde Talen | 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\/*\/*"
]
} | |