Old Blackboard
Reverts Blackboard back to the old UI
Vad är Old Blackboard?
Old Blackboard är en Chrome-tillägg utvecklad av Jonoym, och dess huvudfunktion är "Reverts Blackboard back to the old UI".
Tilläggsskärmbilder
Ladda ner Old Blackboard-förlängningens CRX-fil
Ladda ner Old Blackboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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äggande Information om Tillägg
Namn | Old Blackboard |
ID | olgiclpbcddkfemohjbfoppcccffdkil |
Officiell webbadress | https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil |
Beskrivning | Reverts Blackboard back to the old UI |
Filstorlek | 306 KB |
Antal Installationer | 66 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2023-10-11 |
Publiceringsdatum | 2023-06-25 |
Betyg | 5.00/5 Totalt 4 Betyg |
Utvecklare | Jonoym |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" } } |