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. Основная информация о расширении
| Название | |
| 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"
]
} | |