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" } } |