DTU Course Qualification
Shows courses the current course is a prerequisite for
什麼是DTU Course Qualification?
DTU Course Qualification是由extrillo.productions開發的Chrome擴展程式,該擴展的主要功能是“Shows courses the current course is a prerequisite for”。
擴展截圖
下載DTU Course Qualification擴展crx文件
下載DTU Course Qualification擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | DTU Course Qualification |
ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
官方網址 | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
簡介 | Shows courses the current course is a prerequisite for |
檔案大小 | 204 KB |
安裝次數 | 72 |
目前版本 | 1.0 |
更新時間 | 2023-08-29 |
上架時間 | 2023-08-28 |
開發者 | extrillo.productions |
電子郵箱 | [email protected] |
付費類型 | free |
說明頁面URL | https://github.com/Extrillo/dtu-course-qualification |
支援的語言 | 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" ] } |