Scratch Editor Messages
Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.
O que é Scratch Editor Messages?
Scratch Editor Messages é uma extensão do Chrome desenvolvida por GrannyCookies, e sua principal característica é "Adds a messages counter to the scratch.mit.edu editor. It's helpful, really.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Scratch Editor Messages
Baixe arquivos de extensão Scratch Editor Messages no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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
Informações Básicas da Extensão
Nome | |
ID | keimlfjkekbehbegbnojedobedfenbbf |
URL Oficial | https://chrome.google.com/webstore/detail/scratch-editor-messages/keimlfjkekbehbegbnojedobedfenbbf |
Descrição | Adds a messages counter to the scratch.mit.edu editor. It's helpful, really. |
Tamanho do Arquivo | 38.51 KB |
Contagem de Instalações | 236 |
Versão Atual | 1.0 |
Última Atualização | 2014-12-27 |
Data de Publicação | 2014-12-27 |
Classificação | 5.00/5 Total de 2 Avaliações |
Desenvolvedor | GrannyCookies |
Tipo de Pagamento | free |
Site da Extensão | http://scratch.mit.edu |
Idiomas Suportados | 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" } |