SO Dark Chat +
Provides a new dark theme for stackoverflow chat.
什么是SO Dark Chat +?
SO Dark Chat +是由rlemon开发的Chrome扩展程序,该扩展的主要功能是“Provides a new dark theme for stackoverflow chat.”。
扩展截图
下载SO Dark Chat +扩展crx文件
下载SO Dark Chat +扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
                        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!                     扩展基本信息
| 名称 |   |  
| ID | bbkjccfnenmgidehjhaabamobpbaaghh | 
| 官方URL | https://chromewebstore.google.com/detail/so-dark-chat-+/bbkjccfnenmgidehjhaabamobpbaaghh | 
| 简介 | Provides a new dark theme for stackoverflow chat. | 
| 文件大小 | 6.61 MB | 
| 安装次数 | 80 | 
| 当前版本 | 0.1.5 | 
| 更新时间 | 2019-03-08 | 
| 上架时间 | 2019-03-08 | 
| 评分 | 4.85/5 共13次评分 | 
| 开发者 | rlemon | 
| 付费类型 | free | 
| 扩展官网 | https://github.com/rlemon/se-chat-dark-theme-plus | 
| 帮助页面URL | https://github.com/rlemon/se-chat-dark-theme-plus/issues | 
| 支持的语言 | 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\/*\/*"
    ]
}  |  |