Scratch Project Profile Pictures

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

Apa itu Scratch Project Profile Pictures?

Scratch Project Profile Pictures adalah ekstensi Chrome yang dikembangkan oleh GrannyCookies, dan fitur utamanya adalah "Adds a profile picture of the user who shared the project to scratch project pages.".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Scratch Project Profile Pictures

Unduh file ekstensi Scratch Project Profile Pictures dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Made by Alex Bates (aka GrannyCookies)                    

Informasi Dasar Ekstensi

Nama Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
URL Resmi https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
Deskripsi Adds a profile picture of the user who shared the project to scratch project pages.
Ukuran File 39.37 KB
Jumlah Instalasi 212
Versi Saat Ini 1.0
Terakhir Diperbarui 2014-12-28
Tanggal Publikasi 2014-12-28
Penilaian 3.67/5 Total 3 Penilaian
Pengembang GrannyCookies
Tipe Pembayaran free
Situs Ekstensi http://scratch.mit.edu
Bahasa yang Didukung 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"
}