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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
이메일 [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"
    ]
}