Scratch Project Profile Pictures

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

Was ist Scratch Project Profile Pictures?

Scratch Project Profile Pictures ist eine Chrome-Erweiterung, die von GrannyCookies entwickelt wurde, und ihr Hauptmerkmal ist "Adds a profile picture of the user who shared the project to scratch project pages.".

Erweiterungsscreenshots

screenshot

Scratch Project Profile Pictures-Erweiterungs-CRX-Datei herunterladen

Laden Sie Scratch Project Profile Pictures-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

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

Made by Alex Bates (aka GrannyCookies)                    

Grundlegende Informationen zur Erweiterung

Name Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
Offizielle URL https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Beschreibung Adds a profile picture of the user who shared the project to scratch project pages.
Dateigröße 39.37 KB
Installationsanzahl 212
Aktuelle Version 1.0
Letztes Update 2014-12-28
Veröffentlichungsdatum 2014-12-28
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler GrannyCookies
Zahlungsart free
Erweiterungswebsite http://scratch.mit.edu
Unterstützte Sprachen 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"
}