SO Dark Chat +

Provides a new dark theme for stackoverflow chat.

Was ist SO Dark Chat +?

SO Dark Chat + ist eine Chrome-Erweiterung, die von rlemon entwickelt wurde, und ihr Hauptmerkmal ist "Provides a new dark theme for stackoverflow chat.".

Erweiterungsscreenshots

screenshot

SO Dark Chat +-Erweiterungs-CRX-Datei herunterladen

Laden Sie SO Dark Chat +-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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!                    

Grundlegende Informationen zur Erweiterung

Name SO Dark Chat + SO Dark Chat +
ID bbkjccfnenmgidehjhaabamobpbaaghh
Offizielle URL https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh
Beschreibung Provides a new dark theme for stackoverflow chat.
Dateigröße 6.61 MB
Installationsanzahl 80
Aktuelle Version 0.1.5
Letztes Update 2019-03-08
Veröffentlichungsdatum 2019-03-08
Bewertung 4.85/5 Insgesamt 13 Bewertungen
Entwickler rlemon
Zahlungsart free
Erweiterungswebsite https://github.com/rlemon/se-chat-dark-theme-plus
Hilfeseite URL https://github.com/rlemon/se-chat-dark-theme-plus/issues
Unterstützte Sprachen 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\/*\/*"
    ]
}