Old Blackboard
Reverts Blackboard back to the old UI
Old Blackboardとは何ですか?
Old BlackboardはJonoymによって開発されたChromeの拡張機能で、その主な機能は「Reverts Blackboard back to the old UI」です。
拡張機能のスクリーンショット
Old Blackboard拡張機能のCRXファイルをダウンロード
Old Blackboard拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
UQ has updated its Blackboard UI to something that doesn't feel great to use (animations and inability to open multiple tabs easily) and the link to the previous UI no longer has methods of navigating to courses and to the homepage. This extension builds on the old UI by adding back the header and course list. https://addons.mozilla.org/en-GB/firefox/addon/old-blackboard/
拡張機能の基本情報
名前 | Old Blackboard |
ID | olgiclpbcddkfemohjbfoppcccffdkil |
公式URL | https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil |
説明 | Reverts Blackboard back to the old UI |
ファイルサイズ | 306 KB |
インストール数 | 66 |
現在のバージョン | 1.1 |
最終更新日 | 2023-10-11 |
公開日 | 2023-06-25 |
評価 | 5.00/5 合計 4 レビュー |
開発者 | Jonoym |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Old Blackboard", "description": "Reverts Blackboard back to the old UI", "version": "1.1", "content_scripts": [ { "matches": [ "https:\/\/learn.uq.edu.au\/webapps\/*" ], "js": [ "code\/content.js" ], "css": [ "code\/styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/learn.uq.edu.au\/ultra\/course", "https:\/\/learn.uq.edu.au\/ultra" ], "js": [ "code\/redirect.js" ], "run_at": "document_start" } ], "icons": { "128": "128.png" } } |