Scratch Project Profile Pictures
Adds a profile picture of the user who shared the project to scratch project pages.
Cos'è Scratch Project Profile Pictures?
Scratch Project Profile Pictures è un'estensione di Chrome sviluppata da GrannyCookies, e la sua funzione principale è "Adds a profile picture of the user who shared the project to scratch project pages.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Scratch Project Profile Pictures
Scarica i file di estensione Scratch Project Profile Pictures 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
Simply put, this just puts the sharer's picture on project pages. That's it. Made by Alex Bates (aka GrannyCookies)
Informazioni di Base sull'Estensione
Nome | |
ID | ckkjcabehicmjhgndgpobhjkeenihdbk |
URL Ufficiale | https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk |
Descrizione | Adds a profile picture of the user who shared the project to scratch project pages. |
Dimensione del File | 39.37 KB |
Conteggio Installazioni | 212 |
Versione Corrente | 1.0 |
Ultimo Aggiornamento | 2014-12-28 |
Data di Pubblicazione | 2014-12-28 |
Valutazione | 3.67/5 Totale 3 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 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" } |