ScratchMoji
Brings Emojis to Scratch!
ScratchMoji là gì?
ScratchMoji là một tiện ích mở rộng Chrome được phát triển bởi https://greenbayrules.github.io, và tính năng chính của nó là "Brings Emojis to Scratch!".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng ScratchMoji
Tải xuống các tệp mở rộng ScratchMoji dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | |
ID | mnbldfncnodnfpmhblecpfidlckiiiad |
URL Chính Thức | https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad |
Mô tả | Brings Emojis to Scratch! |
Kích Thước Tệp | 56.1 KB |
Số Lần Cài Đặt | 1,050 |
Phiên Bản Hiện Tại | 1.1 |
Cập Nhật Lần Cuối | 2017-11-19 |
Ngày Phát Hành | 2017-11-19 |
Đánh Giá | 3.42/5 Tổng số 26 Đánh Giá |
Nhà Phát Triển | https://greenbayrules.github.io |
Loại Thanh Toán | free |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |