ScratchMoji
Brings Emojis to Scratch!
什么是ScratchMoji?
ScratchMoji是由https://greenbayrules.github.io开发的Chrome扩展程序,该扩展的主要功能是“Brings Emojis to Scratch!”。
扩展截图
下载ScratchMoji扩展crx文件
下载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. 扩展基本信息
| 名称 | |
| 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"
]
} | |