Darkenify

Add Dark Mode to McGill MyCourses!

What is Darkenify?

Darkenify is a Chrome extension developed by preyansh98, and its main feature is "Add Dark Mode to McGill MyCourses!".

Extension Screenshots

screenshot
screenshot
screenshot

Download Darkenify Extension CRX File

Download Darkenify 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

                        This is a chrome extension that enables a dark mode for McGill MyCourses!                    

Extension Basic Information

Name Darkenify Darkenify
ID lmdhejjpidgcjlhdfdjcofnbpgfjapho
Official URL https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho
Description Add Dark Mode to McGill MyCourses!
File Size 54.72 KB
Installation Count 43
Current Version 1.0.2
Last Updated 2021-12-24
Publish Date 2020-05-17
Rating 5.00/5 Total 1 Ratings
Developer preyansh98
Email [email protected]
Payment Type free
Extension Website https://github.com/preyansh98/darkenify
Supported Languages en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Darkenify",
    "author": "Preyansh Kaushik",
    "version": "1.0.2",
    "description": "Add Dark Mode to McGill MyCourses!",
    "homepage_url": "https:\/\/github.com\/preyansh98\/darkenify",
    "icons": {
        "16": "static\/icons\/martlet-16x16.png",
        "32": "static\/icons\/martlet-32x32.png",
        "48": "static\/icons\/martlet-48x48.png",
        "128": "static\/icons\/martlet-128x128.png"
    },
    "browser_action": {
        "default_icon": {
            "16": "static\/icons\/martlet-16x16.png",
            "32": "static\/icons\/martlet-32x32.png"
        },
        "default_popup": "html\/popup.html",
        "default_title": "Darkenify - Add Dark Mode to MyCourses"
    },
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/mycourses2.mcgill.ca\/*",
                "http:\/\/mycourses2.mcgill.ca\/*"
            ],
            "js": [
                "js\/index.js"
            ]
        }
    ],
    "permissions": [
        "storage",
        "*:\/\/*.mycourses2.mcgill.ca\/*"
    ]
}