Github Custom Emoji Addiction
When you need to have more then the normal emojis in your life.
Что такое Github Custom Emoji Addiction?
Github Custom Emoji Addiction - это расширение Chrome, разработанное roush.kyle, и его основная функция - "When you need to have more then the normal emojis in your life.".
Снимки экрана расширения
Скачать файл CRX расширения Github Custom Emoji Addiction
Скачайте файлы расширений Github Custom Emoji Addiction в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
When you want to have more emojis in your life but Github only supports the standard ones. Now you can define your own emojis and you can use the Github emoji syntax and it will auto fill in the emoji with image you have defined.
Основная информация о расширении
Название | Github Custom Emoji Addiction |
ID | ldgifpnadmnmiibmmkmhdidfpljlmjmk |
Официальный URL | https://chromewebstore.google.com/detail/github-custom-emoji-addic/ldgifpnadmnmiibmmkmhdidfpljlmjmk |
Описание | When you need to have more then the normal emojis in your life. |
Размер файла | 83.48 KB |
Количество установок | 21 |
Текущая Версия | 1.5.4 |
Последнее Обновление | 2020-01-09 |
Дата публикации | 2020-01-08 |
Рейтинг | 5.00/5 Всего 1 оценок |
Разработчик | roush.kyle |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "When you need to have more then the normal emojis in your life.", "manifest_version": 2, "name": "Github Custom Emoji Addiction", "version": "1.5.4", "homepage_url": "https:\/\/github.com\/kyleroush\/Custom-Emoji-addiction", "icons": { "48": "logo.png" }, "permissions": [ "storage" ], "browser_action": { "default_title": "Github Custom Emoji Addiction Settings", "default_popup": "popup\/Settings.html" }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "dependencies\/jquery.js", "dependencies\/caret.js", "dependencies\/atwho.js", "script.js", "emojis.js" ], "css": [ "dependencies\/atwho.css", "githubEmojiSuggestorStyle.css" ] } ] } |