Scratch Project Profile Pictures

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

什么是Scratch Project Profile Pictures?

Scratch Project Profile Pictures是由GrannyCookies开发的Chrome扩展程序,该扩展的主要功能是“Adds a profile picture of the user who shared the project to scratch project pages.”。

扩展截图

screenshot

下载Scratch Project Profile Pictures扩展crx文件

下载Scratch Project Profile Pictures扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

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

Made by Alex Bates (aka GrannyCookies)                    

扩展基本信息

名称 Scratch Project Profile Pictures Scratch Project Profile Pictures
ID ckkjcabehicmjhgndgpobhjkeenihdbk
官方URL https://chrome.google.com/webstore/detail/scratch-project-profile-p/ckkjcabehicmjhgndgpobhjkeenihdbk
简介 Adds a profile picture of the user who shared the project to scratch project pages.
文件大小 39.37 KB
安装次数 212
当前版本 1.0
更新时间 2014-12-28
上架时间 2014-12-28
评分 3.67/5 共3次评分
开发者 GrannyCookies
付费类型 free
扩展官网 http://scratch.mit.edu
支持的语言 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"
}