ScratchMoji
Brings Emojis to Scratch!
Cos'è ScratchMoji?
ScratchMoji è un'estensione di Chrome sviluppata da https://greenbayrules.github.io, e la sua funzione principale è "Brings Emojis to Scratch!".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione ScratchMoji
Scarica i file di estensione ScratchMoji in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | |
ID | mnbldfncnodnfpmhblecpfidlckiiiad |
URL Ufficiale | https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad |
Descrizione | Brings Emojis to Scratch! |
Dimensione del File | 56.1 KB |
Conteggio Installazioni | 1,050 |
Versione Corrente | 1.1 |
Ultimo Aggiornamento | 2017-11-19 |
Data di Pubblicazione | 2017-11-19 |
Valutazione | 3.42/5 Totale 26 Valutazioni |
Sviluppatore | https://greenbayrules.github.io |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |