Emoji Selector
Love emojis? This chrome extension allows you to use fancy emojis anywhere on the Internet. You no longer need to go to…
Что такое Emoji Selector?
Emoji Selector - это расширение Chrome, разработанное Faycal Bessayah, и его основная функция - "Love emojis? This chrome extension allows you to use fancy emojis anywhere on the Internet. You no longer need to go to…".
Снимки экрана расширения
Скачать файл CRX расширения Emoji Selector
Скачайте файлы расширений Emoji Selector в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Love emojis? This chrome extension allows you to use fancy emojis anywhere on the Internet. You no longer need to go to emoticon-websites to search, copy and paste emojis to your message. The extension is very simple to use. Click on the extension button or use the shortcut command ‘Ctrl+E’ and start searching emojis by typing keywords. The selected emoji is automatically put into your message, comment, etc. * You need to refresh opened pages after installation.
Основная информация о расширении
Название | Emoji Selector |
ID | cmhipmaommgbjboekcbbilbflfekdlgi |
Официальный URL | https://chromewebstore.google.com/detail/emoji-selector/cmhipmaommgbjboekcbbilbflfekdlgi |
Описание | Love emojis? This chrome extension allows you to use fancy emojis anywhere on the Internet. You no longer need to go to… |
Размер файла | 272 KB |
Количество установок | 24 |
Текущая Версия | 1.0 |
Последнее Обновление | 2021-03-14 |
Дата публикации | 2021-02-01 |
Разработчик | Faycal Bessayah |
Электронная почта | [email protected] |
Тип оплаты | free |
Поддерживаемые языки | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Emoji Selector", "version": "1.0", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "content.js" ] } ], "commands": { "_execute_browser_action": { "suggested_key": { "windows": "Ctrl+E", "mac": "Command+E", "chromeos": "Ctrl+E", "linux": "Ctrl+E" } } }, "browser_action": { "default_icon": "emoji.png", "default_popup": "index.html", "default_title": "Emoji Selector" } } |