Google Classroom Dark Mode

Transform Google Classroom into a cooler dark version!

Google Classroom Dark Mode là gì?

Google Classroom Dark Mode là một tiện ích mở rộng Chrome được phát triển bởi Zekerocks11, và tính năng chính của nó là "Transform Google Classroom into a cooler dark version!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Google Classroom Dark Mode

Tải xuống các tệp mở rộng Google Classroom Dark Mode dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        V 3.5.2: Complete list of bug fixes and updates below.
-More Bug Fixes
- Updated so the new sidebar isn't beaching your eyes out

Let me know if you see any bugs! 

Also, to clarify, the extension does not collect any of your data. It uses the storage function to save your selected colour mode on the extension, or if you have it disabled, so the next time you come to classroom your settings are saved and reapplied.

This extension will transform your Google Classroom to a way cooler dark version. It is fully functional, but may have areas that were untouched and are being worked on currently.

All the code used for the dark mode is original, therefore there will be bugs and areas that are not the correct colour, style, etc. Please let me know if there is something that is does not look visually correct.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Google Classroom Dark Mode Google Classroom Dark Mode
ID gkmfklmmoioijpjndhdhogcefdbfcfho
URL Chính Thức https://chromewebstore.google.com/detail/google-classroom-dark-mod/gkmfklmmoioijpjndhdhogcefdbfcfho
Mô tả Transform Google Classroom into a cooler dark version!
Kích Thước Tệp 20.75 KB
Số Lần Cài Đặt 40,073
Phiên Bản Hiện Tại 3.5.2
Cập Nhật Lần Cuối 2023-08-14
Ngày Phát Hành 2021-05-01
Đánh Giá 4.59/5 Tổng số 59 Đánh Giá
Nhà Phát Triển Zekerocks11
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Google Classroom Dark Mode",
    "version": "3.5.2",
    "description": "Transform Google Classroom into a cooler dark version!",
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "css\/jetblack.css",
                "css\/googleblack.css"
            ],
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ]
        }
    ],
    "icons": {
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "js": [
                "content.js"
            ],
            "matches": [
                "https:\/\/classroom.google.com\/*"
            ]
        }
    ]
}