Text emoticons
Set of text emoticons for important negotiations.
Что такое Text emoticons?
Text emoticons - это расширение Chrome, разработанное https://oleg.ninja, и его основная функция - "Set of text emoticons for important negotiations.".
Снимки экрана расширения
Скачать файл CRX расширения Text emoticons
Скачайте файлы расширений Text emoticons в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
There are two ways to use it: * Click on extension's icon. In this case, the selected emoticon is copied into the buffer immediately. * Press Alt+Shift+O in the input area. Selected smile will immediately appear in the area after the entered text.
Основная информация о расширении
Название | Text emoticons |
ID | edbdmlapnodebdekiekhmeokboihmong |
Официальный URL | https://chromewebstore.google.com/detail/text-emoticons/edbdmlapnodebdekiekhmeokboihmong |
Описание | Set of text emoticons for important negotiations. |
Размер файла | 45.71 KB |
Количество установок | 1,275 |
Текущая Версия | 3 |
Последнее Обновление | 2016-02-29 |
Дата публикации | 2016-02-28 |
Рейтинг | 4.48/5 Всего 21 оценок |
Разработчик | https://oleg.ninja |
Электронная почта | [email protected] |
Тип оплаты | free |
Официальный сайт расширения | http://oleg.ninja/text-emoticons/ |
URL страницы политики конфиденциальности | https://developer.chrome.com/webstore/program_policies |
Поддерживаемые языки | en,ru |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extName__", "default_locale": "en", "version": "3", "description": "__MSG_extDescription__", "minimum_chrome_version": "28", "icons": { "32": "images\/icon32.png", "128": "images\/icon128.png" }, "permissions": [ "storage", "tabs", "clipboardWrite", "notifications", "*:\/\/*\/*" ], "commands": { "show-layer": { "suggested_key": { "default": "Alt+Shift+O" }, "description": "__MSG_commandDescription__" } }, "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "js": [ "js\/vendor\/jquery-2.1.3.min.js", "js\/smiles.js", "js\/box.js" ], "css": [ "css\/text-enjoy.css" ], "run_at": "document_end" } ], "background": { "scripts": [ "js\/background.js" ] }, "browser_action": { "default_title": "__MSG_extName__", "default_icon": "images\/icon32.png", "default_popup": "views\/popup.html" }, "homepage_url": "http:\/\/oleg.ninja\/text-emoticons\/" } |