Anilist Emoji Extension
This extension adds a emoji select box to anilist text areas
Что такое Anilist Emoji Extension?
Anilist Emoji Extension - это расширение Chrome, разработанное guilhermen2k, и его основная функция - "This extension adds a emoji select box to anilist text areas".
Снимки экрана расширения
Скачать файл CRX расширения Anilist Emoji Extension
Скачайте файлы расширений Anilist Emoji Extension в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Anillist.co does not support unicode emojis by default, this extension adds an emoji select box to each anilist text areas of every page. Instead of inserting the unicode it adds the parsed html code that anilist undestands
Основная информация о расширении
Название | Anilist Emoji Extension |
ID | jlcoboibplamhedogfhaeklnebbjakhm |
Официальный URL | https://chromewebstore.google.com/detail/anilist-emoji-extension/jlcoboibplamhedogfhaeklnebbjakhm |
Описание | This extension adds a emoji select box to anilist text areas |
Размер файла | 52.17 KB |
Количество установок | 21 |
Текущая Версия | 1.1 |
Последнее Обновление | 2023-01-29 |
Дата публикации | 2023-01-23 |
Разработчик | guilhermen2k |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Anilist Emoji Extension", "description": "This extension adds a emoji select box to anilist text areas", "version": "1.1", "icons": { "16": "icon.png", "32": "icon.png", "48": "icon.png", "128": "icon.png" }, "permissions": [ "storage" ], "content_scripts": [ { "js": [ "src\/index.js" ], "css": [ "src\/index.css" ], "matches": [ "https:\/\/anilist.co\/*" ] } ] } |