BlockSchool: Scratch Helper

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

BlockSchool: Scratch Helper là gì?

BlockSchool: Scratch Helper là một tiện ích mở rộng Chrome được phát triển bởi http://block.school, và tính năng chính của nó là "Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng BlockSchool: Scratch Helper

Tải xuống các tệp mở rộng BlockSchool: Scratch Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên BlockSchool: Scratch Helper BlockSchool: Scratch Helper
ID cembecghjhlpmijppbhoacdbnmbfmmka
URL Chính Thức https://chrome.google.com/webstore/detail/blockschool-scratch-helpe/cembecghjhlpmijppbhoacdbnmbfmmka
Mô tả Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!
Kích Thước Tệp 53.3 KB
Số Lần Cài Đặt 123
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2018-03-30
Ngày Phát Hành 2018-03-30
Đánh Giá 4.67/5 Tổng số 12 Đánh Giá
Nhà Phát Triển http://block.school
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://block.school/
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}