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 |
| 官方網址 | 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"
]
} | |