SO Dark Chat +

Provides a new dark theme for stackoverflow chat.

Что такое SO Dark Chat +?

SO Dark Chat + - это расширение Chrome, разработанное rlemon, и его основная функция - "Provides a new dark theme for stackoverflow chat.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения SO Dark Chat +

Скачайте файлы расширений 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
Официальный 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\/*\/*"
    ]
}