SO Dark Chat +

Provides a new dark theme for stackoverflow chat.

What is SO Dark Chat +?

SO Dark Chat + is a Chrome extension developed by rlemon, and its main feature is "Provides a new dark theme for stackoverflow chat.".

Extension Screenshots

screenshot

Download SO Dark Chat + Extension CRX File

Download SO Dark Chat + extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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!                    

Extension Basic Information

Name SO Dark Chat + SO Dark Chat +
ID bbkjccfnenmgidehjhaabamobpbaaghh
Official URL https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh
Description Provides a new dark theme for stackoverflow chat.
File Size 6.61 MB
Installation Count 80
Current Version 0.1.5
Last Updated 2019-03-08
Publish Date 2019-03-08
Rating 4.85/5 Total 13 Ratings
Developer rlemon
Payment Type free
Extension Website https://github.com/rlemon/se-chat-dark-theme-plus
Help Page URL https://github.com/rlemon/se-chat-dark-theme-plus/issues
Supported Languages 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\/*\/*"
    ]
}