ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
Что такое ScratchExt?
ScratchExt - это расширение Chrome, разработанное GrannyCookies, и его основная функция - "Adds a button to the Scratch website that installs ScratchExt.".
Снимки экрана расширения
Скачать файл CRX расширения ScratchExt
Скачайте файлы расширений ScratchExt в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
This extension adds 2 buttons to the Scratch website that install ScratchExt. One is in the navbar, and the other is in the editor near the file button. They are both red so you should see them xP Designed with this custom navigation bar: https://userstyles.org/styles/107407/scratch-navbar-changes This eleminates the need to click the bookmarklet. Extension made by GrannyCookies (Alex Bates) ScratchExt is a collab between GrannyCookies, thistleeverfreen, and Yoda3D.
Основная информация о расширении
Название | |
ID | peilkhpoaiamhgcnagmklekjgmbjjjko |
Официальный URL | https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko |
Описание | Adds a button to the Scratch website that installs ScratchExt. |
Размер файла | 71.05 KB |
Количество установок | 253 |
Текущая Версия | 1.2 |
Последнее Обновление | 2014-12-07 |
Дата публикации | 2014-12-07 |
Рейтинг | 4.17/5 Всего 6 оценок |
Разработчик | GrannyCookies |
Тип оплаты | free |
Официальный сайт расширения | http://scratch.mit.edu |
URL страницы помощи | http://stefanbates.com/bookmarklet.html |
Поддерживаемые языки | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ScratchExt", "version": "1.2", "description": "Adds a button to the Scratch website that installs ScratchExt.", "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" } |