Whiteboard
Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…
Co to jest Whiteboard?
Whiteboard to rozszerzenie Chrome opracowane przez Sunny Guan, a jego główną funkcją jest „Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Whiteboard
Pobierz pliki rozszerzeń Whiteboard w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Whiteboard |
ID | hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
Oficjalny URL | https://chromewebstore.google.com/detail/whiteboard/hgoiijmhpdjkmecnlkpdcflgfjebpbhe |
Opis | Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension… |
Rozmiar pliku | 397 KB |
Liczba instalacji | 2,000 |
Aktualna Wersja | 1.3.4 |
Ostatnia Aktualizacja | 2023-01-18 |
Data Publikacji | 2020-09-28 |
Ocena | 5.00/5 Łącznie 13 Oceny |
Deweloper | Sunny Guan |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/sunnyguan/whiteboard |
Adres URL Strony Pomocy | https://github.com/sunnyguan/whiteboard |
Obsługiwane Języki | 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" } } |