Scratch Editor Messages

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

Co to jest Scratch Editor Messages?

Scratch Editor Messages to rozszerzenie Chrome opracowane przez GrannyCookies, a jego główną funkcją jest „Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Scratch Editor Messages

Pobierz pliki rozszerzeń Scratch Editor Messages w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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                    

Podstawowe informacje o rozszerzeniu

Nazwa Scratch Editor Messages Scratch Editor Messages
ID keimlfjkekbehbegbnojedobedfenbbf
Oficjalny URL https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
Opis Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Rozmiar pliku 38.51 KB
Liczba instalacji 236
Aktualna Wersja 1.0
Ostatnia Aktualizacja 2014-12-27
Data Publikacji 2014-12-27
Ocena 5.00/5 Łącznie 2 Oceny
Deweloper GrannyCookies
Typ Płatności free
Strona Rozszerzenia http://scratch.mit.edu
Obsługiwane Języki 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"
}