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
官方網址 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"
        ]
    }
}