Darkmode for Classroom
Make Google Classroom Dark
What is Darkmode for Classroom?
Darkmode for Classroom is a Chrome extension developed by https://jtlr.org, and its main feature is "Make Google Classroom Dark".
Extension Screenshots
Download Darkmode for Classroom Extension CRX File
Download Darkmode for Classroom extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
Classroom is a popular website for students and educators. Unlike most modern websites, Classroom doesn't have a dark mode. This free extension adds dark mode to Classroom. This is extension simply applies code to Classroom to make it dark mode, all under 100kb. It takes two click to make Classroom dark mode. This is a free extension by JTLR Tech Chrome.
Extension Basic Information
Name | Darkmode for Classroom |
ID | aodninbopfbgghmjhgdobcafmbpeimlb |
Official URL | https://chromewebstore.google.com/detail/darkmode-for-classroom/aodninbopfbgghmjhgdobcafmbpeimlb |
Description | Make Google Classroom Dark |
File Size | 157 KB |
Installation Count | 1,000 |
Current Version | 0.0.2 |
Last Updated | 2024-01-30 |
Publish Date | 2021-10-26 |
Rating | 4.80/5 Total 5 Ratings |
Developer | https://jtlr.org |
[email protected] | |
Payment Type | free |
Extension Website | https://jtlr.org/chrome/dark-mode-for-classroom/ |
Help Page URL | https://jtlr.org/chrome/dark-mode-for-classroom/ |
Privacy Policy Page URL | https://tracking.jtlrgroup.com/chromeprivacy |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Darkmode for Classroom", "version": "0.0.2", "description": "Make Google Classroom Dark", "homepage_url": "http:\/\/jtlrgroup.com", "icons": { "128": "classroom.png" }, "default_locale": "en", "permissions": [ "https:\/\/classroom.google.com\/*\/*\/*" ], "content_scripts": [ { "matches": [ "https:\/\/classroom.google.com\/*" ], "css": [ "src\/inject\/inject.css" ] } ] } |