Better Blackboard

Slight modifications to Blackboard to make it a bit better.

什么是Better Blackboard?

Better Blackboard是由Matthew Kilpatrick开发的Chrome扩展程序,该扩展的主要功能是“Slight modifications to Blackboard to make it a bit better.”。

扩展截图

screenshot

下载Better Blackboard扩展crx文件

下载Better Blackboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
官方URL https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
简介 Slight modifications to Blackboard to make it a bit better.
文件大小 22.81 KB
安装次数 131
当前版本 1.1.2
更新时间 2021-02-22
上架时间 2021-02-22
评分 4.20/5 共5次评分
开发者 Matthew Kilpatrick
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/Matthew-Kilpatrick/Better-Blackboard
帮助页面URL https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
支持的语言 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"
            ]
        }
    ]
}