ScratchMoji

Brings Emojis to Scratch!

ScratchMojiคืออะไร?

ScratchMoji เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://greenbayrules.github.io และคุณลักษณะหลักของมันคือ "Brings Emojis to Scratch!"

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

screenshot
screenshot

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

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

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

                        Bring your conversations to life with ScratchMoji!

This extension replaces the current Scratch emojis for the more widely used Apple emojis. It also converts any emoticon (for example, ":D") into an emoji.

Click the icon of this extension to view all the emojis you can comment.

ScratchMoji is made by Sheshank Shankar (@PackersRuleGoPack)

Thanks to @jokebookservice1 for parts of the code.                    

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

ชื่อ ScratchMoji ScratchMoji
ID mnbldfncnodnfpmhblecpfidlckiiiad
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad
คำอธิบาย Brings Emojis to Scratch!
ขนาดไฟล์ 56.1 KB
จำนวนการติดตั้ง 1,050
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2017-11-19
วันที่เผยแพร่ 2017-11-19
คะแนน 3.42/5 รวมทั้งหมด 26 คะแนน
ผู้พัฒนา https://greenbayrules.github.io
ประเภทการชำระเงิน free
ภาษาที่รองรับ en,es
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "ScratchMoji",
    "short_name": "SM",
    "description": "Brings Emojis to Scratch!",
    "default_locale": "en",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/*"
            ],
            "css": [
                "inject-styles.css"
            ],
            "js": [
                "code.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "version": "1.1",
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "browser_action": {
        "default_popup": "popup.html",
        "default_icon": "icon.png"
    },
    "icons": {
        "16": "icon.png",
        "48": "icon.png",
        "128": "icon.png"
    },
    "permissions": [
        "https:\/\/scratch.mit.edu\/*",
        "storage"
    ],
    "optional_permissions": [
        "notifications"
    ]
}