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.”。

擴展截圖

screenshot
screenshot

下載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 Emoji Assistant
ID jmngpddmfdhocaiaaacfpgknpiaahpab
官方網址 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"
    ]
}