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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        ]
    }
}