EmojiDisplay

This extension replaces emoticon text with the Apple Emojis.

EmojiDisplayคืออะไร?

EmojiDisplay เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ranjotsingh และคุณลักษณะหลักของมันคือ "This extension replaces emoticon text with the Apple Emojis."

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

ดาวน์โหลดไฟล์ส่วนขยาย EmojiDisplay ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        This extension replaces emoticon text with the Apple Emojis.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ EmojiDisplay EmojiDisplay
ID doomojimaojclkcipjldpmdbiedgaoop
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/emojidisplay/doomojimaojclkcipjldpmdbiedgaoop
คำอธิบาย This extension replaces emoticon text with the Apple Emojis.
ขนาดไฟล์ 9.82 KB
จำนวนการติดตั้ง 15
เวอร์ชันปัจจุบัน 0.1
อัปเดตครั้งล่าสุด 2017-11-02
วันที่เผยแพร่ 2017-11-02
คะแนน 1.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา ranjotsingh
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://www.ranjotsingh.com
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "EmojiDisplay",
    "description": "This extension replaces emoticon text with the Apple Emojis.",
    "version": "0.1",
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        "script.js"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ]
}