Scratch Editor Messages 2

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

Co to jest Scratch Editor Messages 2?

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

Pobierz plik CRX rozszerzenia Scratch Editor Messages 2

Pobierz pliki rozszerzeń Scratch Editor Messages 2 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 is a bug fix of Scratch Editor Messages
https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf
By Alex Bates AKA GrannyCookies

Sources can be found on github:
https://github.com/david-resnick/scratch-editor-messages-2-extension                    

Podstawowe informacje o rozszerzeniu

Nazwa Scratch Editor Messages 2 Scratch Editor Messages 2
ID bggohijadecjkpjipnjnamnddbiffnop
Oficjalny URL https://chrome.google.com/webstore/detail/scratch-editor-messages-2/bggohijadecjkpjipnjnamnddbiffnop
Opis Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Rozmiar pliku 39.67 KB
Liczba instalacji 138
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2015-09-29
Data Publikacji 2015-09-29
Ocena 4.00/5 Łącznie 5 Oceny
Deweloper David Resnick
Typ Płatności free
Strona Rozszerzenia https://github.com/david-resnick/scratch-editor-messages-2-extension
Obsługiwane Języki en
manifest.json
{
    "content_scripts": [
        {
            "js": [
                "script.js"
            ],
            "matches": [
                "https:\/\/scratch.mit.edu\/*"
            ],
            "run_at": "document_end"
        }
    ],
    "content_security_policy": "default-src 'none'; style-src 'self'; script-src 'self'; connect-src https:\/\/scratch.mit.edu; img-src https:\/\/scratch.mit.edu",
    "description": "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.",
    "icons": {
        "128": "logo2.png"
    },
    "manifest_version": 2,
    "name": "Scratch Editor Messages 2",
    "permissions": [
        "tabs",
        "https:\/\/scratch.mit.edu\/*"
    ],
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "1.1"
}