Better Classroom

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

Co je Better Classroom?

Better Classroom je rozšíření Chrome vyvinuté Sarwin Rajiah, a jeho hlavní funkcí je „Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Better Classroom

Stáhněte si soubory rozšíření Better Classroom ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        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!                    

Základní Informace o Rozšíření

Název Better Classroom Better Classroom
ID maibneeahfkanhakkogkbcakcadjejkl
Oficiální URL https://chromewebstore.google.com/detail/better-classroom/maibneeahfkanhakkogkbcakcadjejkl
Popis Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.
Velikost souboru 32.66 KB
Počet instalací 417
Aktuální Verze 1.1.2
Poslední Aktualizace 2023-05-07
Datum Vydání 2023-04-03
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář Sarwin Rajiah
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/SarwinR/better-classroom
URL Stránky Nápovědy https://github.com/SarwinR/better-classroom/issues
Podporované Jazyky 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"
        }
    ]
}