Scratch Editor Messages
Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Что такое Scratch Editor Messages?
Scratch Editor Messages - это расширение Chrome, разработанное GrannyCookies, и его основная функция - "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".
Снимки экрана расширения
Скачать файл CRX расширения Scratch Editor Messages
Скачайте файлы расширений Scratch Editor Messages в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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
Основная информация о расширении
Название | |
ID | keimlfjkekbehbegbnojedobedfenbbf |
Официальный URL | https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf |
Описание | Adds a messages counter to the scratch.mit.edu editor. It's helpful, really. |
Размер файла | 38.51 KB |
Количество установок | 236 |
Текущая Версия | 1.0 |
Последнее Обновление | 2014-12-27 |
Дата публикации | 2014-12-27 |
Рейтинг | 5.00/5 Всего 2 оценок |
Разработчик | GrannyCookies |
Тип оплаты | free |
Официальный сайт расширения | http://scratch.mit.edu |
Поддерживаемые языки | 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" } |