Microsoft Teams Emojinator

Adds emoji to microsoft teams via an external emoji server!

Что такое Microsoft Teams Emojinator?

Microsoft Teams Emojinator - это расширение Chrome, разработанное Unknown, и его основная функция - "Adds emoji to microsoft teams via an external emoji server!".

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

screenshot
screenshot

Скачать файл CRX расширения Microsoft Teams Emojinator

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

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

                        Use all of your favorite emoji in Microsoft teams! They do not support custom emoticons be default, this allows the web app to support viewing custom emoji hosted externally.
This requires an external emoji server to host the images for your team, channel, or organization

Use the extension settings page to configure the remote URL for the emoji server

Further documentation and source here:
https://github.com/dsmiller95/microsoft-teams-emojifier                    

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

Название Microsoft Teams Emojinator Microsoft Teams Emojinator
ID eflminelddfglcbimfpncahdiacnnegk
Официальный URL https://chromewebstore.google.com/detail/microsoft-teams-emojinato/eflminelddfglcbimfpncahdiacnnegk
Описание Adds emoji to microsoft teams via an external emoji server!
Размер файла 11.57 KB
Количество установок 2,101
Текущая Версия 1.3
Последнее Обновление 2020-06-02
Дата публикации 2020-06-01
Рейтинг 1.73/5 Всего 11 оценок
Разработчик Unknown
Тип оплаты free
Официальный сайт расширения https://github.com/dsmiller95/microsoft-teams-emojifier
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Microsoft Teams Emojinator",
    "version": "1.3",
    "description": "Adds emoji to microsoft teams via an external emoji server!",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/teams.microsoft.com.us3.cas.ms\/*"
            ],
            "run_at": "document_idle",
            "js": [
                "payload.js"
            ]
        }
    ],
    "icons": {
        "16": "thonk16.png",
        "32": "thonk32.png",
        "48": "thonk48.png",
        "128": "thonk128.png"
    },
    "options_page": "options.html",
    "manifest_version": 2
}