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.”。
擴展截圖
下載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 |
ID | fkpohfnejjimkfbdfmlojhjmgjajckkk |
官方網址 | 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" ] } ] } |