Scratch Editor Messages

Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.

Co je Scratch Editor Messages?

Scratch Editor Messages je rozšíření Chrome vyvinuté GrannyCookies, a jeho hlavní funkcí je „Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Scratch Editor Messages

Stáhněte si soubory rozšíření Scratch Editor Messages 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í

                        This extension, adds a unobtrusive button to the Scratch Editor.
It will automatically change itself to the amount of messages you currently have.

(Also, the button acts as a single-click way to get to the messages page)

Made by Alex Bates AKA GrannyCookies                    

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

Název Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
Oficiální URL https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Popis Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Velikost souboru 38.51 KB
Počet instalací 236
Aktuální Verze 1.0
Poslední Aktualizace 2014-12-27
Datum Vydání 2014-12-27
Hodnocení 5.00/5 Celkem 2 Hodnocení
Vývojář GrannyCookies
Typ Platby free
Webové stránky Rozšíření http://scratch.mit.edu
Podporované Jazyky en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Scratch Editor Messages",
    "version": "1.0",
    "description": "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.",
    "icons": {
        "128": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scratch.mit.edu\/*"
            ],
            "js": [
                "script.js"
            ],
            "run_at": "document_end"
        }
    ],
    "permissions": [
        "tabs",
        "http:\/\/scratch.mit.edu\/*"
    ],
    "manifest_version": 2,
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src http:\/\/scratch.mit.edu; img-src http:\/\/scratch.mit.edu"
}