Google Classroom Dark Mode

Transform Google Classroom into a cooler dark version!

Google Classroom Dark Mode क्या है?

Google Classroom Dark Mode Zekerocks11 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Transform Google Classroom into a cooler dark version!"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot
screenshot
screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Google Classroom Dark Mode एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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\/*"
            ]
        }
    ]
}