Old Blackboard

Reverts Blackboard back to the old UI

What is Old Blackboard?

Old Blackboard is a Chrome extension developed by Jonoym, and its main feature is "Reverts Blackboard back to the old UI".

Extension Screenshots

screenshot
screenshot

Download Old Blackboard Extension CRX File

Download Old Blackboard extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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/                    

Extension Basic Information

Name Old Blackboard Old Blackboard
ID olgiclpbcddkfemohjbfoppcccffdkil
Official URL https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil
Description Reverts Blackboard back to the old UI
File Size 306 KB
Installation Count 66
Current Version 1.1
Last Updated 2023-10-11
Publish Date 2023-06-25
Rating 5.00/5 Total 4 Ratings
Developer Jonoym
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}