Darkenify
Add Dark Mode to McGill MyCourses!
ما هو Darkenify؟
Darkenify هو إضافة Chrome تم تطويرها بواسطة preyansh98، والميزة الرئيسية لها هي "Add Dark Mode to McGill MyCourses!".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Darkenify
قم بتنزيل ملفات الامتداد Darkenify بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
This is a chrome extension that enables a dark mode for McGill MyCourses!
معلومات أساسية عن التمديد
الاسم | 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\/*" ] } |