Scratch Editor Messages
Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
What is Scratch Editor Messages?
Scratch Editor Messages is a Chrome extension developed by GrannyCookies, and its main feature is "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".
Extension Screenshots
Download Scratch Editor Messages Extension CRX File
Download Scratch Editor Messages 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 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
Extension Basic Information
Name | |
ID | keimlfjkekbehbegbnojedobedfenbbf |
Official URL | https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf |
Description | Adds a messages counter to the scratch.mit.edu editor. It's helpful, really. |
File Size | 38.51 KB |
Installation Count | 236 |
Current Version | 1.0 |
Last Updated | 2014-12-27 |
Publish Date | 2014-12-27 |
Rating | 5.00/5 Total 2 Ratings |
Developer | GrannyCookies |
Payment Type | free |
Extension Website | http://scratch.mit.edu |
Supported Languages | 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" } |