Scratch Project Profile Pictures

Adds a profile picture of the user who shared the project to scratch project pages.

¿Qué es Scratch Project Profile Pictures?

Scratch Project Profile Pictures es una extensión de Chrome desarrollada por GrannyCookies, y su función principal es "Adds a profile picture of the user who shared the project to scratch project pages.".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Scratch Project Profile Pictures

Descarga archivos de extensión Scratch Project Profile Pictures en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        Simply put, this just puts the sharer's picture on project pages.
That's it.

Made by Alex Bates (aka GrannyCookies)                    

Información Básica de la Extensión

Nombre Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
URL Oficial https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Descripción Adds a profile picture of the user who shared the project to scratch project pages.
Tamaño del Archivo 39.37 KB
Cantidad de Instalaciones 212
Versión Actual 1.0
Última Actualización 2014-12-28
Fecha de Publicación 2014-12-28
Calificación 3.67/5 Total de 3 Calificaciones
Desarrollador GrannyCookies
Tipo de Pago free
Sitio Web de la Extensión http://scratch.mit.edu
Idiomas Soportados 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"
}