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"
]
} | |