Slack++

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

Slack++คืออะไร?

Slack++ เป็นส่วนขยายของ Chrome ที่พัฒนาโดย denno020 และคุณลักษณะหลักของมันคือ "Extra features for Slack, including dark theme and code copy!"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Slack++

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        ]
    }
}