ScratchMoji
Brings Emojis to Scratch!
Wat is ScratchMoji?
ScratchMoji is een Chrome-extensie ontwikkeld door https://greenbayrules.github.io, en de belangrijkste functie is "Brings Emojis to Scratch!".
Extensie Screenshots
Download het CRX-bestand van de extensie ScratchMoji
Download ScratchMoji-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | |
ID | mnbldfncnodnfpmhblecpfidlckiiiad |
Officiële URL | https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad |
Beschrijving | Brings Emojis to Scratch! |
Bestandsgrootte | 56.1 KB |
Aantal Installaties | 1,050 |
Huidige Versie | 1.1 |
Laatst Bijgewerkt | 2017-11-19 |
Publicatiedatum | 2017-11-19 |
Beoordeling | 3.42/5 Totaal 26 Beoordelingen |
Ontwikkelaar | https://greenbayrules.github.io |
Betalingswijze | free |
Ondersteunde Talen | 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" ] } |