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.”。

擴展截圖

screenshot

下載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!                    

擴展基本資訊

名稱 SO Dark Chat + SO Dark Chat +
ID bbkjccfnenmgidehjhaabamobpbaaghh
官方網址 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\/*\/*"
    ]
}