DTU Course Qualification
Shows courses the current course is a prerequisite for
Wat is DTU Course Qualification?
DTU Course Qualification is een Chrome-extensie ontwikkeld door extrillo.productions, en de belangrijkste functie is "Shows courses the current course is a prerequisite for".
Extensie Screenshots
Download het CRX-bestand van de extensie DTU Course Qualification
Download DTU Course Qualification-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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. Basisinformatie over de Extensie
| Naam | |
| ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
| Officiële URL | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
| Beschrijving | Shows courses the current course is a prerequisite for |
| Bestandsgrootte | 204 KB |
| Aantal Installaties | 72 |
| Huidige Versie | 1.0 |
| Laatst Bijgewerkt | 2023-08-29 |
| Publicatiedatum | 2023-08-28 |
| Ontwikkelaar | extrillo.productions |
| [email protected] | |
| Betalingswijze | free |
| Help Pagina-URL | https://github.com/Extrillo/dtu-course-qualification |
| Ondersteunde Talen | 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"
]
} | |