Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
Was ist Emoji Assistant?
Emoji Assistant ist eine Chrome-Erweiterung, die von ritz078 entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension to autosuggest emojis while writing on the web.".
Erweiterungsscreenshots
Emoji Assistant-Erweiterungs-CRX-Datei herunterladen
Laden Sie Emoji Assistant-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
| Offizielle URL | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
| Beschreibung | A chrome extension to autosuggest emojis while writing on the web. |
| Dateigröße | 2.01 MB |
| Installationsanzahl | 149 |
| Aktuelle Version | 0.3.2 |
| Letztes Update | 2019-03-08 |
| Veröffentlichungsdatum | 2019-03-08 |
| Bewertung | 4.50/5 Insgesamt 2 Bewertungen |
| Entwickler | ritz078 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/ritz078/emoji-assistant |
| Hilfeseite URL | https://github.com/ritz078/emoji-assistant/issues |
| Unterstützte Sprachen | 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"
]
} | |