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. 拡張機能の基本情報
| 名前 | |
| 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 |
| Eメール | [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"
]
} | |