Scratch Editor Messages 2

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

Что такое Scratch Editor Messages 2?

Scratch Editor Messages 2 - это расширение Chrome, разработанное David Resnick, и его основная функция - "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".

Скачать файл CRX расширения Scratch Editor Messages 2

Скачайте файлы расширений Scratch Editor Messages 2 в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        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                    

Основная информация о расширении

Название Scratch Editor Messages 2 Scratch Editor Messages 2
ID bggohijadecjkpjipnjnamnddbiffnop
Официальный URL https://chrome.google.com/webstore/detail/scratch-editor-messages-2/bggohijadecjkpjipnjnamnddbiffnop
Описание Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Размер файла 39.67 KB
Количество установок 138
Текущая Версия 1.1
Последнее Обновление 2015-09-29
Дата публикации 2015-09-29
Рейтинг 4.00/5 Всего 5 оценок
Разработчик David Resnick
Тип оплаты free
Официальный сайт расширения https://github.com/david-resnick/scratch-editor-messages-2-extension
Поддерживаемые языки 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"
}