Slack++

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

Co to jest Slack++?

Slack++ to rozszerzenie Chrome opracowane przez denno020, a jego główną funkcją jest „Extra features for Slack, including dark theme and code copy!”.

Zrzuty ekranu rozszerzenia

screenshot
screenshot
screenshot

Pobierz plik CRX rozszerzenia Slack++

Pobierz pliki rozszerzeń Slack++ w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Slack++ Slack++
ID afmljfkhgiljmbopodcjdnkgmdmnhbpk
Oficjalny URL https://chromewebstore.google.com/detail/slack++/afmljfkhgiljmbopodcjdnkgmdmnhbpk
Opis Extra features for Slack, including dark theme and code copy!
Rozmiar pliku 449 KB
Liczba instalacji 2,082
Aktualna Wersja 1.2.18
Ostatnia Aktualizacja 2019-08-09
Data Publikacji 2019-08-09
Ocena 4.24/5 Łącznie 17 Oceny
Deweloper denno020
E-mail [email protected]
Typ Płatności free
Adres URL Strony Pomocy https://bitbucket.org/denno020/slack/issues
Obsługiwane Języki 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"
        ]
    }
}