Slack++

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

What is Slack++?

Slack++ is a Chrome extension developed by denno020, and its main feature is "Extra features for Slack, including dark theme and code copy!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Slack++ Extension CRX File

Download Slack++ extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Slack++ Slack++
ID afmljfkhgiljmbopodcjdnkgmdmnhbpk
Official URL https://chromewebstore.google.com/detail/slack++/afmljfkhgiljmbopodcjdnkgmdmnhbpk
Description Extra features for Slack, including dark theme and code copy!
File Size 449 KB
Installation Count 2,082
Current Version 1.2.18
Last Updated 2019-08-09
Publish Date 2019-08-09
Rating 4.24/5 Total 17 Ratings
Developer denno020
Email [email protected]
Payment Type free
Help Page URL https://bitbucket.org/denno020/slack/issues
Supported Languages 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"
        ]
    }
}