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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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 معلومات أساسية عن التمديد
| الاسم | |
| 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"
}
} | |