Slack Toggle
Adds the possibility to toggle the display of a section in slack
Что такое Slack Toggle?
Slack Toggle - это расширение Chrome, разработанное http://keiruaprod.fr, и его основная функция - "Adds the possibility to toggle the display of a section in slack".
Снимки экрана расширения
Скачать файл CRX расширения Slack Toggle
Скачайте файлы расширений Slack Toggle в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension allows you to toggle the display of the elements of the different categories of channels : starred, channels, direct messages and private groups. Основная информация о расширении
| Название | |
| ID | ddcippobpbmaanbnaeapbelmjopbahli |
| Официальный URL | https://chrome.google.com/webstore/detail/slack-toggle/ddcippobpbmaanbnaeapbelmjopbahli |
| Описание | Adds the possibility to toggle the display of a section in slack |
| Размер файла | 127 KB |
| Количество установок | 26 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2015-01-14 |
| Дата публикации | 2015-01-14 |
| Разработчик | http://keiruaprod.fr |
| Тип оплаты | free |
| Поддерживаемые языки | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Slack Toggle",
"description": "Adds the possibility to toggle the display of a section in slack",
"version": "1.0",
"permissions": [
"tabs",
"http:\/\/*.slack.com\/",
"https:\/\/*.slack.com\/"
],
"content_scripts": [
{
"matches": [
"http:\/\/*.slack.com\/*",
"https:\/\/*.slack.com\/*"
],
"js": [
"jquery-2.1.3.min.js",
"slack-toggle.js"
]
}
],
"manifest_version": 2,
"icons": {
"48": "pictures\/slack-toggle-logo.png"
},
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'"
} | |