Better Classroom

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

Cos'è Better Classroom?

Better Classroom è un'estensione di Chrome sviluppata da Sarwin Rajiah, e la sua funzione principale è "Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Better Classroom

Scarica i file di estensione Better Classroom in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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!                    

Informazioni di Base sull'Estensione

Nome Better Classroom Better Classroom
ID maibneeahfkanhakkogkbcakcadjejkl
URL Ufficiale https://chromewebstore.google.com/detail/better-classroom/maibneeahfkanhakkogkbcakcadjejkl
Descrizione Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.
Dimensione del File 32.66 KB
Conteggio Installazioni 417
Versione Corrente 1.1.2
Ultimo Aggiornamento 2023-05-07
Data di Pubblicazione 2023-04-03
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Sarwin Rajiah
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/SarwinR/better-classroom
URL della Pagina di Aiuto https://github.com/SarwinR/better-classroom/issues
Lingue Supportate 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"
        }
    ]
}