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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://block.school และคุณลักษณะหลักของมันคือ "Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย BlockSchool: Scratch Helper

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    ]
}