DTU Course Qualification
Shows courses the current course is a prerequisite for
Co to jest DTU Course Qualification?
DTU Course Qualification to rozszerzenie Chrome opracowane przez extrillo.productions, a jego główną funkcją jest „Shows courses the current course is a prerequisite for”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia DTU Course Qualification
Pobierz pliki rozszerzeń DTU Course Qualification w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | DTU Course Qualification |
ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
Oficjalny URL | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
Opis | Shows courses the current course is a prerequisite for |
Rozmiar pliku | 204 KB |
Liczba instalacji | 72 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-08-29 |
Data Publikacji | 2023-08-28 |
Deweloper | extrillo.productions |
[email protected] | |
Typ Płatności | free |
Adres URL Strony Pomocy | https://github.com/Extrillo/dtu-course-qualification |
Obsługiwane Języki | 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" ] } |