Scratch Project Profile Pictures

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

Vad är Scratch Project Profile Pictures?

Scratch Project Profile Pictures är en Chrome-tillägg utvecklad av GrannyCookies, och dess huvudfunktion är "Adds a profile picture of the user who shared the project to scratch project pages.".

Tilläggsskärmbilder

screenshot

Ladda ner Scratch Project Profile Pictures-förlängningens CRX-fil

Ladda ner Scratch Project Profile Pictures-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Made by Alex Bates (aka GrannyCookies)                    

Grundläggande Information om Tillägg

Namn Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
Officiell webbadress https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Beskrivning Adds a profile picture of the user who shared the project to scratch project pages.
Filstorlek 39.37 KB
Antal Installationer 212
Aktuell Version 1.0
Senast Uppdaterad 2014-12-28
Publiceringsdatum 2014-12-28
Betyg 3.67/5 Totalt 3 Betyg
Utvecklare GrannyCookies
Betalningssätt free
Tilläggswebbplats http://scratch.mit.edu
Stödda Språk 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"
}