Slack++

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

Slack++ là gì?

Slack++ là một tiện ích mở rộng Chrome được phát triển bởi denno020, và tính năng chính của nó là "Extra features for Slack, including dark theme and code copy!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Slack++

Tải xuống các tệp mở rộng Slack++ dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Slack++ Slack++
ID afmljfkhgiljmbopodcjdnkgmdmnhbpk
URL Chính Thức https://chromewebstore.google.com/detail/slack++/afmljfkhgiljmbopodcjdnkgmdmnhbpk
Mô tả Extra features for Slack, including dark theme and code copy!
Kích Thước Tệp 449 KB
Số Lần Cài Đặt 2,082
Phiên Bản Hiện Tại 1.2.18
Cập Nhật Lần Cuối 2019-08-09
Ngày Phát Hành 2019-08-09
Đánh Giá 4.24/5 Tổng số 17 Đánh Giá
Nhà Phát Triển denno020
Email [email protected]
Loại Thanh Toán free
URL Trang Trợ Giúp https://bitbucket.org/denno020/slack/issues
Ngôn Ngữ Được Hỗ Trợ 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"
        ]
    }
}