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
Eメール [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"
        ]
    }
}