BlockSchool: Scratch Helper

Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!

BlockSchool: Scratch Helperとは何ですか?

BlockSchool: Scratch Helperはhttp://block.schoolによって開発されたChromeの拡張機能で、その主な機能は「Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!」です。

拡張機能のスクリーンショット

screenshot

BlockSchool: Scratch Helper拡張機能のCRXファイルをダウンロード

BlockSchool: Scratch Helper拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        BlockSchool is an online coding school for kids ages 6-13. We built this tool to help students who are learning how to build Scratch games!

This extension takes a screenshot of the Scratch page and sends it to the tutor so that they can help. If you are interested in signing up for coding classes, please visit our website. We offer live online classes with tutors at top colleges and companies like Stanford and Facebook.                    

拡張機能の基本情報

名前 BlockSchool: Scratch Helper BlockSchool: Scratch Helper
ID cembecghjhlpmijppbhoacdbnmbfmmka
公式URL https://chrome.google.com/webstore/detail/blockschool-scratch-helpe/cembecghjhlpmijppbhoacdbnmbfmmka
説明 Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!
ファイルサイズ 53.3 KB
インストール数 123
現在のバージョン 1.1
最終更新日 2018-03-30
公開日 2018-03-30
評価 4.67/5 合計 12 レビュー
開発者 http://block.school
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://block.school/
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "BlockSchool: Scratch Helper",
    "version": "1.1",
    "description": "Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!",
    "manifest_version": 2,
    "icons": {
        "16": "images\/blockschool16.png",
        "32": "images\/blockschool32.png",
        "48": "images\/blockschool48.png",
        "128": "images\/blockschool128.png"
    },
    "background": {
        "persistent": false,
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "tabs",
        "http:\/\/scratch.mit.edu\/*",
        "https:\/\/scratch.mit.edu\/*",
        "http:\/\/127.0.0.1:8888\/",
        "storage",
        ""
    ],
    "browser_action": {
        "default_title": "Scratch Helper",
        "default_icon": "images\/blockschool32.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/scratch.mit.edu\/*",
                "https:\/\/scratch.mit.edu\/*",
                "http:\/\/127.0.0.1:8888\/"
            ],
            "css": [
                "scratchhelper.css"
            ],
            "js": [
                "jquery-3.3.1.min.js",
                "Dropbox-sdk.min.js",
                "scratchhelper.js"
            ],
            "run_at": "document_start"
        }
    ],
    "web_accessible_resources": [
        "intercom.js"
    ]
}