Darkenify

Add Dark Mode to McGill MyCourses!

Wat is Darkenify?

Darkenify is een Chrome-extensie ontwikkeld door preyansh98, en de belangrijkste functie is "Add Dark Mode to McGill MyCourses!".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie Darkenify

Download Darkenify-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

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

Basisinformatie over de Extensie

Naam Darkenify Darkenify
ID lmdhejjpidgcjlhdfdjcofnbpgfjapho
Officiële URL https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho
Beschrijving Add Dark Mode to McGill MyCourses!
Bestandsgrootte 54.72 KB
Aantal Installaties 43
Huidige Versie 1.0.2
Laatst Bijgewerkt 2021-12-24
Publicatiedatum 2020-05-17
Beoordeling 5.00/5 Totaal 1 Beoordelingen
Ontwikkelaar preyansh98
E-mail [email protected]
Betalingswijze free
Extensiewebsite https://github.com/preyansh98/darkenify
Ondersteunde Talen 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\/*"
    ]
}