Whiteboard
Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…
ما هو Whiteboard؟
Whiteboard هو إضافة Chrome تم تطويرها بواسطة Sunny Guan، والميزة الرئيسية لها هي "Whiteboard is a UI enhancement suite for The University of Texas at Dallas's online learning platform, eLearning. This extension…".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Whiteboard
قم بتنزيل ملفات الامتداد Whiteboard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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.
معلومات أساسية عن التمديد
الاسم | Whiteboard |
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 |
عنوان صفحة المساعدة | 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" } } |