Darkenify

Add Dark Mode to McGill MyCourses!

Apa itu Darkenify?

Darkenify adalah ekstensi Chrome yang dikembangkan oleh preyansh98, dan fitur utamanya adalah "Add Dark Mode to McGill MyCourses!".

Screenshot Ekstensi

screenshot
screenshot
screenshot

Unduh Berkas CRX Ekstensi Darkenify

Unduh file ekstensi Darkenify dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Darkenify Darkenify
ID lmdhejjpidgcjlhdfdjcofnbpgfjapho
URL Resmi https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho
Deskripsi Add Dark Mode to McGill MyCourses!
Ukuran File 54.72 KB
Jumlah Instalasi 43
Versi Saat Ini 1.0.2
Terakhir Diperbarui 2021-12-24
Tanggal Publikasi 2020-05-17
Penilaian 5.00/5 Total 1 Penilaian
Pengembang preyansh98
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/preyansh98/darkenify
Bahasa yang Didukung 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\/*"
    ]
}