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 |
电子邮箱 | [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" } } |