Better Classroom

Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.

What is Better Classroom?

Better Classroom is a Chrome extension developed by Sarwin Rajiah, and its main feature is "Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot
screenshot

Download Better Classroom Extension CRX File

Download Better Classroom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        Better Classroom is a simple yet powerful extension that enhances your Google Classroom experience by allowing you to organize and rename your classes with ease. With Better Classroom, you can create folders to group your classes, making it easier to manage and navigate through them. Say goodbye to cluttered and disorganized classrooms, and hello to a more efficient and streamlined experience. Get Better Classroom today and take control of your Google Classroom organization!                    

Extension Basic Information

Name Better Classroom Better Classroom
ID maibneeahfkanhakkogkbcakcadjejkl
Official URL https://chromewebstore.google.com/detail/better-classroom/maibneeahfkanhakkogkbcakcadjejkl
Description Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.
File Size 32.66 KB
Installation Count 417
Current Version 1.1.2
Last Updated 2023-05-07
Publish Date 2023-04-03
Rating 5.00/5 Total 1 Ratings
Developer Sarwin Rajiah
Email [email protected]
Payment Type free
Extension Website https://github.com/SarwinR/better-classroom
Help Page URL https://github.com/SarwinR/better-classroom/issues
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Better Classroom",
    "description": "Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.",
    "version": "1.1.2",
    "icons": {
        "16": "assets\/icons\/extension_icons\/16.png",
        "48": "assets\/icons\/extension_icons\/48.png",
        "128": "assets\/icons\/extension_icons\/128.png"
    },
    "action": {
        "default_icon": {
            "16": "assets\/icons\/extension_icons\/16.png",
            "48": "assets\/icons\/extension_icons\/48.png",
            "128": "assets\/icons\/extension_icons\/128.png"
        },
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/html\/folder_creation_modal.html",
                "\/html\/dropdown_list.html",
                "\/html\/folder_setting_modal.html",
                "\/html\/class_setting_button.html",
                "\/html\/class_setting_modal.html"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "background": {
        "service_worker": "main.js"
    },
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ],
            "js": [
                "content.js"
            ],
            "css": [
                "css\/style.css"
            ],
            "run_at": "document_end"
        }
    ]
}