ScratchMoji
Brings Emojis to Scratch!
Qu'est-ce que ScratchMoji ?
ScratchMoji est une extension Chrome développée par https://greenbayrules.github.io, et sa fonction principale est "Brings Emojis to Scratch!".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension ScratchMoji
Téléchargez les fichiers d'extension ScratchMoji au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | |
ID | mnbldfncnodnfpmhblecpfidlckiiiad |
URL Officiel | https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad |
Description | Brings Emojis to Scratch! |
Taille du Fichier | 56.1 KB |
Nombre d'Installations | 1,050 |
Version Actuelle | 1.1 |
Dernière Mise à Jour | 2017-11-19 |
Date de Publication | 2017-11-19 |
Évaluation | 3.42/5 Total 26 Évaluations |
Développeur | https://greenbayrules.github.io |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |