Challenge Galaxy

Learn Scratch through these interactive challenges!

Challenge Galaxyคืออะไร?

Challenge Galaxy เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://challengegalaxy.com และคุณลักษณะหลักของมันคือ "Learn Scratch through these interactive challenges!"

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

screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Challenge Galaxy

ดาวน์โหลดไฟล์ส่วนขยาย Challenge Galaxy ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Learn to code with Scratch with Challenge Galaxy. Our challenges teach through problem solving and experimentation with just the right amount of help. Start with simple challenges and work your way through more complicated projects and games.

Install this Chrome extension and load the challenges any time you are at Scratch (https://scratch.mit.edu). 

Our Philosophy

Experimentation and Play
Fiddling, puzzling, playing and experimenting are at the core of learning. The progressive educational movements of the last hundred years go by different monikers – constructivism, constructionism, “Maker Education,”“Hands on Learning.” The big idea that connects them is that the best learning happens when people engage with materials, deriving their own understanding through active inquiry and experimentation – rather than through instruction about the materials. What are the core concepts of engineering? Try building a bridge out of drinking straws and marshmallows and you’ll probably arrive at a good portion of the answer.


The Right Amount of Scaffolding
The big challenge for educators is how to manage what should be a constant tension between the instinct to show someone how to do something and the harder task of laying out the pieces and engaging them in the task of figuring it out. Sometimes a student is stuck and could benefit from a bit of direction or information to keep moving forward. The challenge for educators to devise assignments for students that allows them to develop their own questions and methods, but still help them arrive at the particular understandings that we as the educators have been tasked with “teaching.” At the end of the day we may really need to know how to build a real bridge.


A flexible platform
The goal of ChallengeGalaxy is to create a platform that allows for this flexibility. We are working to give learners a place where they can puzzle through the key concepts of programming with optional clues and pointers which can give a hand up over a wall, solidify knowledge, confirm suspicions, or open paths to new inquiries. Some people will want a lot of pointers, some will want a few, and some will want none.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Challenge Galaxy Challenge Galaxy
ID cbidhbafbppopanlhekfpjjaicagjbci
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/challenge-galaxy/cbidhbafbppopanlhekfpjjaicagjbci
คำอธิบาย Learn Scratch through these interactive challenges!
ขนาดไฟล์ 71.07 KB
จำนวนการติดตั้ง 647
เวอร์ชันปัจจุบัน 0.0.6
อัปเดตครั้งล่าสุด 2019-07-08
วันที่เผยแพร่ 2019-07-08
คะแนน 3.55/5 รวมทั้งหมด 11 คะแนน
ผู้พัฒนา https://challengegalaxy.com
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Challenge Galaxy",
    "version": "0.0.6",
    "description": "Learn Scratch through these interactive challenges!",
    "permissions": [
        "declarativeContent",
        "activeTab"
    ],
    "web_accessible_resources": [
        "tutorial.css",
        "images\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/scratch.mit.edu\/projects\/*"
            ],
            "all_frames": true,
            "js": [
                "jquery.min.js",
                "jquery-ui.min.js",
                "contentScript.js"
            ],
            "css": [
                "tutorial.css"
            ]
        }
    ],
    "page_action": {
        "default_popup": "popup\/index.html"
    },
    "icons": {
        "16": "images\/spacescratch-16.png",
        "32": "images\/spacescratch-32.png",
        "48": "images\/spacescratch-48.png",
        "128": "images\/spacescratch-128.png"
    },
    "manifest_version": 2
}