Whiteboard
Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…
Vad är Whiteboard?
Whiteboard är en Chrome-tillägg utvecklad av Sunny Guan, och dess huvudfunktion är "Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…".
Tilläggsskärmbilder
Ladda ner Whiteboard-förlängningens CRX-fil
Ladda ner Whiteboard-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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.
Grundläggande Information om Tillägg
Namn | Whiteboard |
ID | hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
Officiell webbadress | https://chromewebstore.google.com/detail/whiteboard/hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
Beskrivning | Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension… |
Filstorlek | 397 KB |
Antal Installationer | 2,000 |
Aktuell Version | 1.3.4 |
Senast Uppdaterad | 2023-01-18 |
Publiceringsdatum | 2020-09-28 |
Betyg | 5.00/5 Totalt 13 Betyg |
Utvecklare | Sunny Guan |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/sunnyguan/whiteboard |
Hjälpsida URL | https://github.com/sunnyguan/whiteboard |
Stödda Språk | 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" } } |