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 |
| 官方網址 | 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"
}
} | |