Darkenify

Add Dark Mode to McGill MyCourses!

Что такое Darkenify?

Darkenify - это расширение Chrome, разработанное preyansh98, и его основная функция - "Add Dark Mode to McGill MyCourses!".

Снимки экрана расширения

screenshot
screenshot
screenshot

Скачать файл CRX расширения Darkenify

Скачайте файлы расширений Darkenify в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

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

Основная информация о расширении

Название Darkenify Darkenify
ID lmdhejjpidgcjlhdfdjcofnbpgfjapho
Официальный URL https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho
Описание Add Dark Mode to McGill MyCourses!
Размер файла 54.72 KB
Количество установок 43
Текущая Версия 1.0.2
Последнее Обновление 2021-12-24
Дата публикации 2020-05-17
Рейтинг 5.00/5 Всего 1 оценок
Разработчик preyansh98
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://github.com/preyansh98/darkenify
Поддерживаемые языки 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\/*"
    ]
}