Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
Co to jest Emoji Assistant?
Emoji Assistant to rozszerzenie Chrome opracowane przez ritz078, a jego główną funkcją jest „A chrome extension to autosuggest emojis while writing on the web.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Emoji Assistant
Pobierz pliki rozszerzeń Emoji Assistant w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Automatically suggest emojis from the dropdown. Works on text input boxes, textareas and contenteditables. If doest work try using after Command + Alt + Enter For any kind of issues please go to https://github.com/ritz078/emoji-assistant/issues and file an issue there.
Podstawowe informacje o rozszerzeniu
Nazwa | Emoji Assistant |
ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
Oficjalny URL | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
Opis | A chrome extension to autosuggest emojis while writing on the web. |
Rozmiar pliku | 2.01 MB |
Liczba instalacji | 149 |
Aktualna Wersja | 0.3.2 |
Ostatnia Aktualizacja | 2019-03-08 |
Data Publikacji | 2019-03-08 |
Ocena | 4.50/5 Łącznie 2 Oceny |
Deweloper | ritz078 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/ritz078/emoji-assistant |
Adres URL Strony Pomocy | https://github.com/ritz078/emoji-assistant/issues |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "__MSG_appName__", "version": "0.3.2", "manifest_version": 2, "description": "__MSG_appDescription__", "icons": { "16": "images\/icon-16.png", "128": "images\/icon-128.png" }, "options_page": "options.html", "default_locale": "en", "permissions": [ "storage", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "scripts\/vendor\/jquery.js", "scripts\/vendor\/jquery.textcomplete.js", "scripts\/contentscript.js" ], "css": [ "styles\/main.css" ], "run_at": "document_end", "all_frames": false } ], "browser_action": { "default_icon": { "19": "images\/icon-19.png", "38": "images\/icon-38.png" }, "default_title": "emoji-assistant" }, "background": { "scripts": [ "scripts\/background.js" ], "persistent": false }, "web_accessible_resources": [ "images\/*.png" ] } |