Slack++

Extra features for Slack, including dark theme and code copy!

什么是Slack++?

Slack++是由denno020开发的Chrome扩展程序,该扩展的主要功能是“Extra features for Slack, including dark theme and code copy!”。

扩展截图

screenshot
screenshot
screenshot

下载Slack++扩展crx文件

下载Slack++扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension will add some extra features to Slack.

Those features currently are:
- Adds a copy button to messages posted using single or triple backticks
- A dark theme

Changelog

1.2.18 Theme updates

Lots of updates after Slack's recent code overhaul

1.2.17 Theme updates

Quick theme updates after Slack changed from using ID's to classnames                    

扩展基本信息

名称 Slack++ Slack++
ID afmljfkhgiljmbopodcjdnkgmdmnhbpk
官方URL https://chromewebstore.google.com/detail/slack++/afmljfkhgiljmbopodcjdnkgmdmnhbpk
简介 Extra features for Slack, including dark theme and code copy!
文件大小 449 KB
安装次数 2,082
当前版本 1.2.18
更新时间 2019-08-09
上架时间 2019-08-09
评分 4.24/5 共17次评分
开发者 denno020
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://bitbucket.org/denno020/slack/issues
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Slack++",
    "version": "1.2.18",
    "permissions": [
        "storage"
    ],
    "icons": {
        "16": "img\/icon16.png",
        "32": "img\/icon32.png",
        "48": "img\/icon48.png",
        "128": "img\/icon128.png"
    },
    "description": "Extra features for Slack, including dark theme and code copy!",
    "author": "Luke Denton ",
    "content_scripts": [
        {
            "js": [
                "js\/content_libraries.js",
                "js\/content_script.js"
            ],
            "css": [
                "css\/style.css",
                "css\/themes.css"
            ],
            "matches": [
                "http:\/\/*.slack.com\/*",
                "https:\/\/*.slack.com\/*"
            ]
        }
    ],
    "options_page": "options.html",
    "background": {
        "scripts": [
            "js\/background.js"
        ]
    }
}