DTU Course Analyzer
Analyzes and scores courses on kurser.dtu.dk/xxxxx
DTU Course Analyzer क्या है?
DTU Course Analyzer dtu.course.analyzer द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Analyzes and scores courses on kurser.dtu.dk/xxxxx"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में DTU Course Analyzer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } } |