ScratchExt
Adds a button to the Scratch website that installs ScratchExt.
What is ScratchExt?
ScratchExt is a Chrome extension developed by GrannyCookies, and its main feature is "Adds a button to the Scratch website that installs ScratchExt.".
Extension Screenshots
Download ScratchExt Extension CRX File
Download ScratchExt extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | |
ID | peilkhpoaiamhgcnagmklekjgmbjjjko |
Official URL | https://chrome.google.com/webstore/detail/scratchext/peilkhpoaiamhgcnagmklekjgmbjjjko |
Description | Adds a button to the Scratch website that installs ScratchExt. |
File Size | 71.05 KB |
Installation Count | 253 |
Current Version | 1.2 |
Last Updated | 2014-12-07 |
Publish Date | 2014-12-07 |
Rating | 4.17/5 Total 6 Ratings |
Developer | GrannyCookies |
Payment Type | free |
Extension Website | http://scratch.mit.edu |
Help Page URL | http://stefanbates.com/bookmarklet.html |
Supported Languages | 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" } |