Subgroups for Google Classroom

Assign certain students access to Google Classroom posts, assignments, and more without having to check them off every time!

Subgroups for Google Classroom क्या है?

Subgroups for Google Classroom kennethchap.dev द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Assign certain students access to Google Classroom posts, assignments, and more without having to check them off every time!"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Subgroups for Google Classroom एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Nearly all online learning platforms, such as Canvas, Blackboard, and Schoology, allow you to create subgroups. Except Google Classroom.

Introducing Subgroups for Google Classroom, an extension that does not require any Google sign-in to create subgroups! Now, you, as an educator can assign 100+ students classwork in ONE CLICK. No more painfully finding and checking off every single student!

If you encounter any bugs, please report them in the "Support" section of this Chrome Extension homepage or email [email protected]. And if you enjoy using this extension, please consider donating.
https://www.paypal.com/donate/?hosted_button_id=JXD88LGWVURLG

Current Version: v1.1.1 (Clean UI Update)
══════★ What's new in v1.1.1?  ★══════
Patched security vulnerability and corrected import prompt wording.

══════★ What's new in v1.1?  ★══════
🎨 UI is now responsive to all screen sizes and is much cleaner!
Since Google had updated Google Classroom, so did this extension.
✉️ Added emails!
If your students have the same full name and profile picture, now you can tell who's who by looking at their email. Note that as of now, it takes 0.5 seconds to fully add a NEW student to the list. This means that if you have 100 students and this is your FIRST TIME loading them in all, it will take 50 seconds (however, if you have 99 students ALREADY loaded in and 1 new student, it would only take 0.5 seconds). This is a limitation that will be addressed in future updates.
📦 Import and export your subgroups!
Want to transfer your subgroups from one device to another or make subgroups using spreadsheets (especially Google Form results)? With the addition of these new buttons and step-by-step prompts, it makes this process much easier.
🗑️ Clear your subgroups!
Hate clicking the trash button for every subgroup to start over? Now you can also do that in one click, no matter how many you have.

Developed by Kenneth Chap at kennethchap.dev                    

एक्सटेंशन की मूल जानकारी

नाम Subgroups for Google Classroom Subgroups for Google Classroom
ID liihdnckdcohbeincekdciebinhmpfab
आधिकारिक URL https://chromewebstore.google.com/detail/subgroups-for-google-clas/liihdnckdcohbeincekdciebinhmpfab
विवरण Assign certain students access to Google Classroom posts, assignments, and more without having to check them off every time!
फ़ाइल का आकार 4.53 MB
स्थापना संख्या 150
वर्तमान संस्करण 1.1.1
अंतिम अपडेट 2023-08-27
प्रकाशन तिथि 2023-07-23
रेटिंग 4.75/5 कुल 4 रेटिंग्स
डेवलपर kennethchap.dev
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Subgroups for Google Classroom",
    "version": "1.1.1",
    "description": "Assign certain students access to Google Classroom posts, assignments, and more without having to check them off every time!",
    "author": "Kenneth Chap",
    "action": {
        "default_popup": "src\/pages\/popup\/index.html"
    },
    "icons": {
        "16": "icon-16.png",
        "32": "icon-32.png",
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "permissions": [
        "downloads"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ],
            "js": [
                "src\/pages\/content\/index.js"
            ],
            "run_at": "document_end",
            "css": [
                "contentStyle.css"
            ]
        }
    ],
    "background": {
        "service_worker": "src\/pages\/background\/index.js",
        "type": "module"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "contentStyle.css",
                "step1cropped.webp",
                "step2cropped.webp",
                "step3cropped.webp",
                "valid-spreadsheet.png"
            ],
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ]
        }
    ]
}