Better Blackboard
Slight modifications to Blackboard to make it a bit better.
What is Better Blackboard?
Better Blackboard is a Chrome extension developed by Matthew Kilpatrick, and its main feature is "Slight modifications to Blackboard to make it a bit better.".
Extension Screenshots
Download Better Blackboard Extension CRX File
Download Better 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
This add-on makes some minor modifications to the University of Manchester Blackboard homepage to make it more usable: - Replace the 'welcome' image with a list of upcoming deadlines, and submission links - Hide previous semester course units from the "Current courses" tab The source code for this add-on can be found at https://github.com/Matthew-Kilpatrick/Better-Blackboard
Extension Basic Information
Name | Better Blackboard |
ID | fkpohfnejjimkfbdfmlojhjmgjajckkk |
Official URL | https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk |
Description | Slight modifications to Blackboard to make it a bit better. |
File Size | 22.81 KB |
Installation Count | 131 |
Current Version | 1.1.2 |
Last Updated | 2021-02-22 |
Publish Date | 2021-02-22 |
Rating | 4.20/5 Total 5 Ratings |
Developer | Matthew Kilpatrick |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/Matthew-Kilpatrick/Better-Blackboard |
Help Page URL | https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues |
Supported Languages | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Better Blackboard", "version": "1.1.2", "icons": { "16": "assets\/icons\/favicon-16.png", "32": "assets\/icons\/favicon-32.png", "48": "assets\/icons\/favicon-48.png", "128": "assets\/icons\/favicon-128.png" }, "description": "Slight modifications to Blackboard to make it a bit better.", "homepage_url": "https:\/\/github.com\/Matthew-Kilpatrick\/better-blackboard", "short_name": "Better Blackboard", "permissions": [ "http:\/\/online.manchester.ac.uk\/*", "https:\/\/online.manchester.ac.uk\/*" ], "content_security_policy": "script-src 'self'; object-src 'self'", "author": "Matthew Kilpatrick", "minimum_chrome_version": "49", "content_scripts": [ { "matches": [ "http:\/\/online.manchester.ac.uk\/*", "https:\/\/online.manchester.ac.uk\/*" ], "js": [ "js\/contentScript.bundle.js" ], "css": [ "assets\/css\/contentScript.css" ] } ] } |