Better Blackboard

Slight modifications to Blackboard to make it a bit better.

Better Blackboard là gì?

Better Blackboard là một tiện ích mở rộng Chrome được phát triển bởi Matthew Kilpatrick, và tính năng chính của nó là "Slight modifications to Blackboard to make it a bit better.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Better Blackboard

Tải xuống các tệp mở rộng Better Blackboard dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Better Blackboard Better Blackboard
ID fkpohfnejjimkfbdfmlojhjmgjajckkk
URL Chính Thức https://chromewebstore.google.com/detail/better-blackboard/fkpohfnejjimkfbdfmlojhjmgjajckkk
Mô tả Slight modifications to Blackboard to make it a bit better.
Kích Thước Tệp 22.81 KB
Số Lần Cài Đặt 131
Phiên Bản Hiện Tại 1.1.2
Cập Nhật Lần Cuối 2021-02-22
Ngày Phát Hành 2021-02-22
Đánh Giá 4.20/5 Tổng số 5 Đánh Giá
Nhà Phát Triển Matthew Kilpatrick
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Matthew-Kilpatrick/Better-Blackboard
URL Trang Trợ Giúp https://github.com/Matthew-Kilpatrick/Better-Blackboard/issues
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}