ScratchMoji

Brings Emojis to Scratch!

Co je ScratchMoji?

ScratchMoji je rozšíření Chrome vyvinuté https://greenbayrules.github.io, a jeho hlavní funkcí je „Brings Emojis to Scratch!“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření ScratchMoji

Stáhněte si soubory rozšíření ScratchMoji ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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.                    

Základní Informace o Rozšíření

Název ScratchMoji ScratchMoji
ID mnbldfncnodnfpmhblecpfidlckiiiad
Oficiální URL https://chrome.google.com/webstore/detail/scratchmoji/mnbldfncnodnfpmhblecpfidlckiiiad
Popis Brings Emojis to Scratch!
Velikost souboru 56.1 KB
Počet instalací 1,050
Aktuální Verze 1.1
Poslední Aktualizace 2017-11-19
Datum Vydání 2017-11-19
Hodnocení 3.42/5 Celkem 26 Hodnocení
Vývojář https://greenbayrules.github.io
Typ Platby free
Podporované Jazyky 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"
    ]
}