DTU Course Qualification
Shows courses the current course is a prerequisite for
Was ist DTU Course Qualification?
DTU Course Qualification ist eine Chrome-Erweiterung, die von extrillo.productions entwickelt wurde, und ihr Hauptmerkmal ist "Shows courses the current course is a prerequisite for".
Erweiterungsscreenshots
DTU Course Qualification-Erweiterungs-CRX-Datei herunterladen
Laden Sie DTU Course Qualification-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
The extension logs and adds what the viewed course is a prerequisite for, both mandatory and recommended. Works on courses at DTU, on sites with url = "https://kurser.dtu.dk/course/*", where star is the course number of 5 digits. Grundlegende Informationen zur Erweiterung
| Name | |
| ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
| Offizielle URL | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
| Beschreibung | Shows courses the current course is a prerequisite for |
| Dateigröße | 204 KB |
| Installationsanzahl | 72 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2023-08-29 |
| Veröffentlichungsdatum | 2023-08-28 |
| Entwickler | extrillo.productions |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/Extrillo/dtu-course-qualification |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"manifest_version": 3,
"name": "DTU Course Qualification",
"description": "Shows courses the current course is a prerequisite for",
"version": "1.0",
"content_scripts": [
{
"matches": [
"http:\/\/kurser.dtu.dk\/course\/*",
"https:\/\/kurser.dtu.dk\/course\/*"
],
"js": [
"js\/jquery.js",
"contentscript.js"
]
}
],
"icons": {
"16": "images\/icon_16.png",
"128": "images\/icon_128.png"
},
"web_accessible_resources": [
{
"resources": [
"db\/data.js",
"contentscript.js",
"js\/jquery.js"
],
"matches": [
"http:\/\/kurser.dtu.dk\/*",
"https:\/\/kurser.dtu.dk\/*"
]
}
],
"background": {
"service_worker": "background.js",
"type": "module"
},
"action": {
"default_icon": "images\/icon_128.png"
},
"permissions": [
"activeTab"
]
} | |