DTU Course Qualification
Shows courses the current course is a prerequisite for
Vad är DTU Course Qualification?
DTU Course Qualification är en Chrome-tillägg utvecklad av extrillo.productions, och dess huvudfunktion är "Shows courses the current course is a prerequisite for".
Tilläggsskärmbilder
Ladda ner DTU Course Qualification-förlängningens CRX-fil
Ladda ner DTU Course Qualification-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
| Namn | |
| ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
| Officiell webbadress | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
| Beskrivning | Shows courses the current course is a prerequisite for |
| Filstorlek | 204 KB |
| Antal Installationer | 72 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-08-29 |
| Publiceringsdatum | 2023-08-28 |
| Utvecklare | extrillo.productions |
| E-post | [email protected] |
| Betalningssätt | free |
| Hjälpsida URL | https://github.com/Extrillo/dtu-course-qualification |
| Stödda Språk | 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"
]
} | |