YoloGlyphics Discord extension

Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,…

Что такое YoloGlyphics Discord extension?

YoloGlyphics Discord extension - это расширение Chrome, разработанное http://yologlyphics.com, и его основная функция - "Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,…".

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

Скачать файл CRX расширения YoloGlyphics Discord extension

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

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

                        Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use.

If you're not good at drawing, don't worry! You can search our library of Emotes too, and use those instead.

Your friends will be envious of your awesome superpowers!                    

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

Название YoloGlyphics Discord extension YoloGlyphics Discord extension
ID pohnhkfeokmgfnnllomdcpadgcjdohnd
Официальный URL https://chrome.google.com/webstore/detail/yologlyphics-discord-exte/pohnhkfeokmgfnnllomdcpadgcjdohnd
Описание Draw custom Emotes/Emoji and share them with friends on Discord! It's super fast and easy to use. If you're not good at drawing,…
Размер файла 695 KB
Количество установок 74
Текущая Версия 1.1.1
Последнее Обновление 2020-07-06
Дата публикации 2019-12-09
Рейтинг 5.00/5 Всего 1 оценок
Разработчик http://yologlyphics.com
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YoloGlyphics Discord extension",
    "description": "",
    "version": "1.1.1",
    "browser_action": {
        "default_popup": "options\/options.html",
        "default_icon": {
            "38": "icons\/to_38.png",
            "19": "icons\/to_19.png"
        }
    },
    "options_page": "options\/options.html",
    "icons": {
        "16": "icons\/to_16.png",
        "48": "icons\/to_48.png",
        "128": "icons\/to_128.png"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "tabs",
        "*:\/\/discord.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/discord.com\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "css": [],
            "run_at": "document_end"
        }
    ],
    "web_accessible_resources": [
        "options.html",
        "inject.js"
    ]
}