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