Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Co to jest Slack Emoji Switcher?
Slack Emoji Switcher to rozszerzenie Chrome opracowane przez TETRA2000, a jego główną funkcją jest „This extension allows the user to change emoji in the slack page.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Slack Emoji Switcher
Pobierz pliki rozszerzeń Slack Emoji Switcher 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
Change Slack's emoji style.
Podstawowe informacje o rozszerzeniu
Nazwa | Slack Emoji Switcher |
ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
Oficjalny URL | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
Opis | This extension allows the user to change emoji in the slack page. |
Rozmiar pliku | 14.07 KB |
Liczba instalacji | 15 |
Aktualna Wersja | 1.0.1 |
Ostatnia Aktualizacja | 2018-02-08 |
Data Publikacji | 2018-02-08 |
Deweloper | TETRA2000 |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/TETRA2000/slack-emoji-switcher |
Adres URL Strony Pomocy | https://github.com/TETRA2000/slack-emoji-switcher/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Slack Emoji Switcher", "description": "This extension allows the user to change emoji in the slack page.", "version": "1.0.1", "browser_action": { "default_icon": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "default_popup": "popup.html" }, "permissions": [ "activeTab", "tabs", "https:\/\/*.slack.com\/*", "storage" ], "content_scripts": [ { "matches": [ "https:\/\/*.slack.com\/*" ], "js": [ "changeemoji.js" ] } ] } |