Scratch Editor Messages

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

Wat is Scratch Editor Messages?

Scratch Editor Messages is een Chrome-extensie ontwikkeld door GrannyCookies, en de belangrijkste functie is "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".

Extensie Screenshots

screenshot

Download het CRX-bestand van de extensie Scratch Editor Messages

Download Scratch Editor Messages-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

                        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                    

Basisinformatie over de Extensie

Naam Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
Officiële URL https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Beschrijving Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Bestandsgrootte 38.51 KB
Aantal Installaties 236
Huidige Versie 1.0
Laatst Bijgewerkt 2014-12-27
Publicatiedatum 2014-12-27
Beoordeling 5.00/5 Totaal 2 Beoordelingen
Ontwikkelaar GrannyCookies
Betalingswijze free
Extensiewebsite http://scratch.mit.edu
Ondersteunde Talen 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"
}