Scratch Project Profile Pictures

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

Hvad er Scratch Project Profile Pictures?

Scratch Project Profile Pictures er en Chrome-udvidelse udviklet af GrannyCookies, og dens hovedfunktion er "Adds a profile picture of the user who shared the project to scratch project pages.".

Udvidelsesskærmbilleder

screenshot

Download Scratch Project Profile Pictures-udvidelses-CRX-fil

Download Scratch Project Profile Pictures-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Made by Alex Bates (aka GrannyCookies)                    

Grundlæggende oplysninger om udvidelsen

Navn Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
Officiel URL https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Beskrivelse Adds a profile picture of the user who shared the project to scratch project pages.
Filstørrelse 39.37 KB
Antal Installationer 212
Nuværende Version 1.0
Senest Opdateret 2014-12-28
Udgivelsesdato 2014-12-28
Bedømmelse 3.67/5 Samlet 3 Bedømmelser
Udvikler GrannyCookies
Betalingsmetode free
Udvidelseswebsted http://scratch.mit.edu
Understøttede Sprog 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"
}