Better Classroom

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

Better Classroomとは何ですか?

Better ClassroomはSarwin Rajiahによって開発されたChromeの拡張機能で、その主な機能は「Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.」です。

拡張機能のスクリーンショット

screenshot
screenshot
screenshot
screenshot
screenshot

Better Classroom拡張機能のCRXファイルをダウンロード

Better Classroom拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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!                    

拡張機能の基本情報

名前 Better Classroom Better Classroom
ID maibneeahfkanhakkogkbcakcadjejkl
公式URL https://chromewebstore.google.com/detail/better-classroom/maibneeahfkanhakkogkbcakcadjejkl
説明 Better Classroom is a Google Chrome extension that lets users create folders to organize their classes in Google Classroom.
ファイルサイズ 32.66 KB
インストール数 417
現在のバージョン 1.1.2
最終更新日 2023-05-07
公開日 2023-04-03
評価 5.00/5 合計 1 レビュー
開発者 Sarwin Rajiah
Eメール [email protected]
支払い方法 free
拡張機能のウェブサイト https://github.com/SarwinR/better-classroom
ヘルプページのURL https://github.com/SarwinR/better-classroom/issues
対応言語 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"
        }
    ]
}