DTU Course Analyzer
Analyzes and scores courses on kurser.dtu.dk/xxxxx
什麼是DTU Course Analyzer?
DTU Course Analyzer是由dtu.course.analyzer開發的Chrome擴展程式,該擴展的主要功能是“Analyzes and scores courses on kurser.dtu.dk/xxxxx”。
擴展截圖
下載DTU Course Analyzer擴展crx文件
下載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 擴展基本資訊
| 名稱 | |
| ID | bimhgdngikcnelkhjindmdghndfmdcde |
| 官方網址 | 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"
}
} | |