Slack Emoji Manager

Easily upload and download your emojis in Slack

Что такое Slack Emoji Manager?

Slack Emoji Manager - это расширение Chrome, разработанное Jared Stevick, и его основная функция - "Easily upload and download your emojis in Slack".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Slack Emoji Manager

Скачайте файлы расширений Slack Emoji Manager в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        Simple, one click bulk upload and download of all of your Slack emojis!

Just click the extension button to get started. 

Look for the bulk upload and download sections once the page loads.

Uploading an emoji with the same filename as an existing emoji will fail!                    

Основная информация о расширении

Название Slack Emoji Manager Slack Emoji Manager
ID alcljabecbbiacnmjojjnpcdafbjebgh
Официальный URL https://chrome.google.com/webstore/detail/slack-emoji-manager/alcljabecbbiacnmjojjnpcdafbjebgh
Описание Easily upload and download your emojis in Slack
Размер файла 2.73 MB
Количество установок 378
Текущая Версия 0.0.4
Последнее Обновление 2017-08-28
Дата публикации 2017-08-28
Рейтинг 2.92/5 Всего 12 оценок
Разработчик Jared Stevick
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Slack Emoji Manager",
    "short_name": "Slack Emoji Manager",
    "description": "Easily upload and download your emojis in Slack",
    "version": "0.0.4",
    "permissions": [
        "activeTab",
        "http:\/\/*\/",
        "https:\/\/*\/"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.slack.com\/*\/emoji*"
            ],
            "js": [
                "content.bundle.js"
            ],
            "run_at": "document_end"
        }
    ],
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "neutral.png"
    },
    "icons": {
        "128": "neutral.png"
    },
    "web_accessible_resources": [
        "content.bundle.js",
        "content.bundle.js.map"
    ],
    "manifest_version": 2
}