Better Brightspace
Changes the Brightspace homepage to focus on current courses.
Better Brightspaceとは何ですか?
Better Brightspaceは2mattoによって開発されたChromeの拡張機能で、その主な機能は「Changes the Brightspace homepage to focus on current courses.」です。
拡張機能のスクリーンショット
Better Brightspace拡張機能のCRXファイルをダウンロード
Better Brightspace拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
拡張機能の基本情報
名前 | Better Brightspace |
ID | hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
公式URL | https://chromewebstore.google.com/detail/better-brightspace/hgfcmgimdjhecjhmhemcdibgfcnhmmgd |
説明 | Changes the Brightspace homepage to focus on current courses. |
ファイルサイズ | 47.41 KB |
インストール数 | 45 |
現在のバージョン | 0.0.0.6 |
最終更新日 | 2019-01-21 |
公開日 | 2019-01-21 |
評価 | 1.00/5 合計 1 レビュー |
開発者 | 2matto |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Better Brightspace", "version": "0.0.0.6", "description": "Changes the Brightspace homepage to focus on current courses.", "icons": { "128": "BetterBrightSpace-128.png" }, "content_scripts": [ { "run_at": "document_start", "matches": [ "*:\/\/*.brightspace.com\/*" ], "css": [ "content.css" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/home" ], "js": [ "home-content.js" ] }, { "run_at": "document_end", "matches": [ "*:\/\/*.brightspace.com\/d2l\/le\/content\/*\/Home" ], "js": [ "course-content.js" ] } ], "browser_action": { "default_icon": "BetterBrightSpace-128.png" }, "manifest_version": 2 } |