Scratch Editor Messages

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

Vad är Scratch Editor Messages?

Scratch Editor Messages är en Chrome-tillägg utvecklad av GrannyCookies, och dess huvudfunktion är "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".

Tilläggsskärmbilder

screenshot

Ladda ner Scratch Editor Messages-förlängningens CRX-fil

Ladda ner Scratch Editor Messages-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
Officiell webbadress https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Beskrivning Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Filstorlek 38.51 KB
Antal Installationer 236
Aktuell Version 1.0
Senast Uppdaterad 2014-12-27
Publiceringsdatum 2014-12-27
Betyg 5.00/5 Totalt 2 Betyg
Utvecklare GrannyCookies
Betalningssätt free
Tilläggswebbplats http://scratch.mit.edu
Stödda Språk 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"
}