Darkenify

Add Dark Mode to McGill MyCourses!

Darkenify là gì?

Darkenify là một tiện ích mở rộng Chrome được phát triển bởi preyansh98, và tính năng chính của nó là "Add Dark Mode to McGill MyCourses!".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Darkenify

Tải xuống các tệp mở rộng Darkenify dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Darkenify Darkenify
ID lmdhejjpidgcjlhdfdjcofnbpgfjapho
URL Chính Thức https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho
Mô tả Add Dark Mode to McGill MyCourses!
Kích Thước Tệp 54.72 KB
Số Lần Cài Đặt 43
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2021-12-24
Ngày Phát Hành 2020-05-17
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển preyansh98
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/preyansh98/darkenify
Ngôn Ngữ Được Hỗ Trợ 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\/*"
    ]
}