DTU Course Qualification
Shows courses the current course is a prerequisite for
DTU Course Qualificationคืออะไร?
DTU Course Qualification เป็นส่วนขยายของ Chrome ที่พัฒนาโดย extrillo.productions และคุณลักษณะหลักของมันคือ "Shows courses the current course is a prerequisite for"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DTU Course Qualification
ดาวน์โหลดไฟล์ส่วนขยาย 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" ] } |