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 |
| 公式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 |
| Eメール | [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"
}
} | |