Whiteboard
Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…
什么是Whiteboard?
Whiteboard是由Sunny Guan开发的Chrome扩展程序,该扩展的主要功能是“Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…”。
扩展截图
下载Whiteboard扩展crx文件
下载Whiteboard扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension provides a modern interface with useful features such as grades overview, weekly calendar, notifications, and much more. It also provides RateMyProfessor and UTDGrades information as additional columns on CourseBook. 扩展基本信息
| 名称 | |
| ID | hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
| 官方URL | https://chromewebstore.google.com/detail/whiteboard/hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
| 简介 | Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension… |
| 文件大小 | 397 KB |
| 安装次数 | 2,000 |
| 当前版本 | 1.3.4 |
| 更新时间 | 2023-01-18 |
| 上架时间 | 2020-09-28 |
| 评分 | 5.00/5 共13次评分 |
| 开发者 | Sunny Guan |
| 电子邮箱 | [email protected] |
| 付费类型 | free |
| 扩展官网 | https://github.com/sunnyguan/whiteboard |
| 帮助页面URL | https://github.com/sunnyguan/whiteboard |
| 支持的语言 | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Whiteboard",
"version": "1.3.4",
"manifest_version": 2,
"content_scripts": [
{
"matches": [
"https:\/\/elearning.utdallas.edu\/*",
"https:\/\/coursebook.utdallas.edu\/*"
],
"js": [
"content.js"
],
"run_at": "document_start"
}
],
"web_accessible_resources": [
"*"
],
"background": {
"scripts": [
"bg_page.js"
],
"persistent": false
},
"permissions": [
"storage"
],
"browser_action": {
"default_popup": "popup.html"
},
"icons": {
"16": "temoc16.png",
"48": "temoc48.png",
"128": "temoc128.png"
}
} | |