Old Blackboard
Reverts Blackboard back to the old UI
Hvad er Old Blackboard?
Old Blackboard er en Chrome-udvidelse udviklet af Jonoym, og dens hovedfunktion er "Reverts Blackboard back to the old UI".
Udvidelsesskærmbilleder
Download Old Blackboard-udvidelses-CRX-fil
Download Old Blackboard-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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/
Grundlæggende oplysninger om udvidelsen
Navn | Old Blackboard |
ID | olgiclpbcddkfemohjbfoppcccffdkil |
Officiel URL | https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil |
Beskrivelse | Reverts Blackboard back to the old UI |
Filstørrelse | 306 KB |
Antal Installationer | 66 |
Nuværende Version | 1.1 |
Senest Opdateret | 2023-10-11 |
Udgivelsesdato | 2023-06-25 |
Bedømmelse | 5.00/5 Samlet 4 Bedømmelser |
Udvikler | Jonoym |
[email protected] | |
Betalingsmetode | free |
Understøttede Sprog | 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" } } |