Old Blackboard
Reverts Blackboard back to the old UI
Что такое Old Blackboard?
Old Blackboard - это расширение Chrome, разработанное Jonoym, и его основная функция - "Reverts Blackboard back to the old UI".
Снимки экрана расширения
Скачать файл CRX расширения Old Blackboard
Скачайте файлы расширений 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" } } |