DTU Course Qualification
Shows courses the current course is a prerequisite for
DTU Course Qualificationとは何ですか?
DTU Course Qualificationはextrillo.productionsによって開発されたChromeの拡張機能で、その主な機能は「Shows courses the current course is a prerequisite for」です。
拡張機能のスクリーンショット
DTU Course Qualification拡張機能のCRXファイルをダウンロード
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.
拡張機能の基本情報
名前 | DTU Course Qualification |
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 |
Eメール | [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" ] } |