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 |
官方URL | 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" ] } |