Emoji Assistant

A chrome extension to autosuggest emojis while writing on the web.

Emoji Assistantคืออะไร?

Emoji Assistant เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ritz078 และคุณลักษณะหลักของมันคือ "A chrome extension to autosuggest emojis while writing on the web."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Emoji Assistant

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
    ]
}