Google Classroom Dark Mode

Transform Google Classroom into a cooler dark version!

什么是Google Classroom Dark Mode?

Google Classroom Dark Mode是由Zekerocks11开发的Chrome扩展程序,该扩展的主要功能是“Transform Google Classroom into a cooler dark version!”。

扩展截图

screenshot
screenshot
screenshot
screenshot
screenshot

下载Google Classroom Dark Mode扩展crx文件

下载Google Classroom Dark Mode扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Google Classroom Dark Mode Google Classroom Dark Mode
ID gkmfklmmoioijpjndhdhogcefdbfcfho
官方URL https://chromewebstore.google.com/detail/google-classroom-dark-mod/gkmfklmmoioijpjndhdhogcefdbfcfho
简介 Transform Google Classroom into a cooler dark version!
文件大小 20.75 KB
安装次数 40,073
当前版本 3.5.2
更新时间 2023-08-14
上架时间 2021-05-01
评分 4.59/5 共59次评分
开发者 Zekerocks11
电子邮箱 [email protected]
付费类型 free
支持的语言 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\/*"
            ]
        }
    ]
}