Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
什么是Emoji Assistant?
Emoji Assistant是由ritz078开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension to autosuggest emojis while writing on the web.”。
扩展截图
下载Emoji Assistant扩展crx文件
下载Emoji Assistant扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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.
扩展基本信息
名称 | Emoji Assistant |
ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
官方URL | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
简介 | A chrome extension to autosuggest emojis while writing on the web. |
文件大小 | 2.01 MB |
安装次数 | 149 |
当前版本 | 0.3.2 |
更新时间 | 2019-03-08 |
上架时间 | 2019-03-08 |
评分 | 4.50/5 共2次评分 |
开发者 | ritz078 |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/ritz078/emoji-assistant |
帮助页面URL | https://github.com/ritz078/emoji-assistant/issues |
支持的语言 | 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" ] } |