DTU Course Qualification
Shows courses the current course is a prerequisite for
Hvad er DTU Course Qualification?
DTU Course Qualification er en Chrome-udvidelse udviklet af extrillo.productions, og dens hovedfunktion er "Shows courses the current course is a prerequisite for".
Udvidelsesskærmbilleder
Download DTU Course Qualification-udvidelses-CRX-fil
Download DTU Course Qualification-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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. Grundlæggende oplysninger om udvidelsen
| Navn | |
| ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
| Officiel URL | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
| Beskrivelse | Shows courses the current course is a prerequisite for |
| Filstørrelse | 204 KB |
| Antal Installationer | 72 |
| Nuværende Version | 1.0 |
| Senest Opdateret | 2023-08-29 |
| Udgivelsesdato | 2023-08-28 |
| Udvikler | extrillo.productions |
| [email protected] | |
| Betalingsmetode | free |
| Hjælpeside-URL | https://github.com/Extrillo/dtu-course-qualification |
| Understøttede Sprog | 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"
]
} | |