Emoji Assistant
A chrome extension to autosuggest emojis while writing on the web.
Emoji Assistant là gì?
Emoji Assistant là một tiện ích mở rộng Chrome được phát triển bởi ritz078, và tính năng chính của nó là "A chrome extension to autosuggest emojis while writing on the web.".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng Emoji Assistant
Tải xuống các tệp mở rộng Emoji Assistant dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | Emoji Assistant |
ID | jmngpddmfdhocaiaaacfpgknpiaahpab |
URL Chính Thức | https://chromewebstore.google.com/detail/emoji-assistant/jmngpddmfdhocaiaaacfpgknpiaahpab |
Mô tả | A chrome extension to autosuggest emojis while writing on the web. |
Kích Thước Tệp | 2.01 MB |
Số Lần Cài Đặt | 149 |
Phiên Bản Hiện Tại | 0.3.2 |
Cập Nhật Lần Cuối | 2019-03-08 |
Ngày Phát Hành | 2019-03-08 |
Đánh Giá | 4.50/5 Tổng số 2 Đánh Giá |
Nhà Phát Triển | ritz078 |
[email protected] | |
Loại Thanh Toán | free |
Trang Web Mở Rộng | https://github.com/ritz078/emoji-assistant |
URL Trang Trợ Giúp | https://github.com/ritz078/emoji-assistant/issues |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |