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\/*"
    ]
}