Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
Vad är Emoji Assistant?
Emoji Assistant är en Chrome-tillägg utvecklad av ritz078, och dess huvudfunktion är "A chrome extension to autosuggest emojis while writing on the web.".
Tilläggsskärmbilder
Ladda ner Emoji Assistant-förlängningens CRX-fil
Ladda ner Emoji Assistant-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Emoji Assistant |
ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
Officiell webbadress | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
Beskrivning | A chrome extension to autosuggest emojis while writing on the web. |
Filstorlek | 2.01 MB |
Antal Installationer | 149 |
Aktuell Version | 0.3.2 |
Senast Uppdaterad | 2019-03-08 |
Publiceringsdatum | 2019-03-08 |
Betyg | 4.50/5 Totalt 2 Betyg |
Utvecklare | ritz078 |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ritz078/emoji-assistant |
Hjälpsida URL | https://github.com/ritz078/emoji-assistant/issues |
Stödda Språk | 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" ] } |