DTU Course Qualification
Shows courses the current course is a prerequisite for
DTU Course Qualification là gì?
DTU Course Qualification là một tiện ích mở rộng Chrome được phát triển bởi extrillo.productions, và tính năng chính của nó là "Shows courses the current course is a prerequisite for".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng DTU Course Qualification
Tải xuống các tệp mở rộng DTU Course Qualification dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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.
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | DTU Course Qualification |
ID | flhjcmgcbgdpicmbhbjbaipidilddimb |
URL Chính Thức | https://chromewebstore.google.com/detail/dtu-course-qualification/flhjcmgcbgdpicmbhbjbaipidilddimb |
Mô tả | Shows courses the current course is a prerequisite for |
Kích Thước Tệp | 204 KB |
Số Lần Cài Đặt | 72 |
Phiên Bản Hiện Tại | 1.0 |
Cập Nhật Lần Cuối | 2023-08-29 |
Ngày Phát Hành | 2023-08-28 |
Nhà Phát Triển | extrillo.productions |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://github.com/Extrillo/dtu-course-qualification |
Ngôn Ngữ Được Hỗ Trợ | 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" ] } |