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"
}