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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Get help in Scratch projects with a live coding tutor from BlockSchool -- whenever you need it!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में BlockSchool: Scratch Helper एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    ]
}