Darkenify
Add Dark Mode to McGill MyCourses!
Darkenify क्या है?
Darkenify preyansh98 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add Dark Mode to McGill MyCourses!"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Darkenify एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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\/*" ] } |