Slack Emoji Switcher
This extension allows the user to change emoji in the slack page.
Что такое Slack Emoji Switcher?
Slack Emoji Switcher - это расширение Chrome, разработанное TETRA2000, и его основная функция - "This extension allows the user to change emoji in the slack page.".
Снимки экрана расширения
Скачать файл CRX расширения Slack Emoji Switcher
Скачайте файлы расширений Slack Emoji Switcher в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Change Slack's emoji style. Основная информация о расширении
| Название | |
| ID | pkhpifkaaibiiolelhdkhijfnkklbjoj |
| Официальный URL | https://chromewebstore.google.com/detail/slack-emoji-switcher/pkhpifkaaibiiolelhdkhijfnkklbjoj |
| Описание | This extension allows the user to change emoji in the slack page. |
| Размер файла | 14.07 KB |
| Количество установок | 15 |
| Текущая Версия | 1.0.1 |
| Последнее Обновление | 2018-02-08 |
| Дата публикации | 2018-02-08 |
| Разработчик | TETRA2000 |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/TETRA2000/slack-emoji-switcher |
| URL страницы помощи | https://github.com/TETRA2000/slack-emoji-switcher/issues |
| Поддерживаемые языки | 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"
]
}
]
} | |