DTU Course Analyzer
Analyzes and scores courses on kurser.dtu.dk/xxxxx
DTU Course Analyzerคืออะไร?
DTU Course Analyzer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย dtu.course.analyzer และคุณลักษณะหลักของมันคือ "Analyzes and scores courses on kurser.dtu.dk/xxxxx"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย DTU Course Analyzer
ดาวน์โหลดไฟล์ส่วนขยาย DTU Course Analyzer ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Analyzes courses on DTU's coursebase and ranks them. Install the extension and go to eg. http://kurser.dtu.dk/course/01005 to see an analysis. The higher the numbers are the better the course is. This is an open-source project: https://github.com/OskarNS/dtu-course-analyzer
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | DTU Course Analyzer |
ID | bimhgdngikcnelkhjindmdghndfmdcde |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/dtu-course-analyzer/bimhgdngikcnelkhjindmdghndfmdcde |
คำอธิบาย | Analyzes and scores courses on kurser.dtu.dk/xxxxx |
ขนาดไฟล์ | 309 KB |
จำนวนการติดตั้ง | 9,382 |
เวอร์ชันปัจจุบัน | 1.2.3 |
อัปเดตครั้งล่าสุด | 2019-09-16 |
วันที่เผยแพร่ | 2019-09-16 |
คะแนน | 5.00/5 รวมทั้งหมด 13 คะแนน |
ผู้พัฒนา | dtu.course.analyzer |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DTU Course Analyzer", "description": "Analyzes and scores courses on kurser.dtu.dk\/xxxxx", "version": "1.2.3", "manifest_version": 2, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "http:\/\/kurser.dtu.dk\/course\/*", "https:\/\/kurser.dtu.dk\/course\/*" ], "css": [ "css\/jquery.dataTables.css" ], "js": [ "js\/jquery.js", "contentscript.js" ] } ], "web_accessible_resources": [ "db\/data.js", "contentscript.js" ], "background": { "scripts": [ "js\/jquery.js", "\/db\/data.js", "background.js" ] }, "browser_action": { "default_icon": "icon128.png" } } |