Scratch Project Profile Pictures
Adds a profile picture of the user who shared the project to scratch project pages.
O que é Scratch Project Profile Pictures?
Scratch Project Profile Pictures é uma extensão do Chrome desenvolvida por GrannyCookies, e sua principal característica é "Adds a profile picture of the user who shared the project to scratch project pages.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Scratch Project Profile Pictures
Baixe arquivos de extensão Scratch Project Profile Pictures 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
Simply put, this just puts the sharer's picture on project pages. That's it. Made by Alex Bates (aka GrannyCookies)
Informações Básicas da Extensão
Nome | |
ID | ckkjcabehicmjhgndgpobhjkeenihdbk |
URL Oficial | https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk |
Descrição | Adds a profile picture of the user who shared the project to scratch project pages. |
Tamanho do Arquivo | 39.37 KB |
Contagem de Instalações | 212 |
Versão Atual | 1.0 |
Última Atualização | 2014-12-28 |
Data de Publicação | 2014-12-28 |
Classificação | 3.67/5 Total de 3 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 Project Profile Pictures", "version": "1.0", "description": "Adds a profile picture of the user who shared the project to scratch project pages.", "icons": { "128": "logo.png" }, "content_scripts": [ { "matches": [ "http:\/\/scratch.mit.edu\/projects\/*" ], "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" } |