Darkenify
Add Dark Mode to McGill MyCourses!
Was ist Darkenify?
Darkenify ist eine Chrome-Erweiterung, die von preyansh98 entwickelt wurde, und ihr Hauptmerkmal ist "Add Dark Mode to McGill MyCourses!".
Erweiterungsscreenshots
Darkenify-Erweiterungs-CRX-Datei herunterladen
Laden Sie Darkenify-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This is a chrome extension that enables a dark mode for McGill MyCourses! Grundlegende Informationen zur Erweiterung
| Name | |
| ID | lmdhejjpidgcjlhdfdjcofnbpgfjapho |
| Offizielle URL | https://chromewebstore.google.com/detail/darkenify/lmdhejjpidgcjlhdfdjcofnbpgfjapho |
| Beschreibung | Add Dark Mode to McGill MyCourses! |
| Dateigröße | 54.72 KB |
| Installationsanzahl | 43 |
| Aktuelle Version | 1.0.2 |
| Letztes Update | 2021-12-24 |
| Veröffentlichungsdatum | 2020-05-17 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | preyansh98 |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://github.com/preyansh98/darkenify |
| Unterstützte Sprachen | 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\/*"
]
} | |