Scratch Editor Messages
Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
Cos'è Scratch Editor Messages?
Scratch Editor Messages è un'estensione di Chrome sviluppata da GrannyCookies, e la sua funzione principale è "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Scratch Editor Messages
Scarica i file di estensione Scratch Editor Messages in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | keimlfjkekbehbegbnojedobedfenbbf |
| URL Ufficiale | https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf |
| Descrizione | Adds a messages counter to the scratch.mit.edu editor. It's helpful, really. |
| Dimensione del File | 38.51 KB |
| Conteggio Installazioni | 236 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2014-12-27 |
| Data di Pubblicazione | 2014-12-27 |
| Valutazione | 5.00/5 Totale 2 Valutazioni |
| Sviluppatore | GrannyCookies |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | http://scratch.mit.edu |
| Lingue Supportate | 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"
} | |