Old Blackboard
Reverts Blackboard back to the old UI
ما هو Old Blackboard؟
Old Blackboard هو إضافة Chrome تم تطويرها بواسطة Jonoym، والميزة الرئيسية لها هي "Reverts Blackboard back to the old UI".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة Old Blackboard
قم بتنزيل ملفات الامتداد Old Blackboard بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
UQ has updated its Blackboard UI to something that doesn't feel great to use (animations and inability to open multiple tabs easily) and the link to the previous UI no longer has methods of navigating to courses and to the homepage. This extension builds on the old UI by adding back the header and course list. https://addons.mozilla.org/en-GB/firefox/addon/old-blackboard/
معلومات أساسية عن التمديد
الاسم | Old Blackboard |
ID | olgiclpbcddkfemohjbfoppcccffdkil |
عنوان URL الرسمي | https://chromewebstore.google.com/detail/old-blackboard/olgiclpbcddkfemohjbfoppcccffdkil |
الوصف | Reverts Blackboard back to the old UI |
حجم الملف | 306 KB |
عدد التثبيتات | 66 |
النسخة الحالية | 1.1 |
آخر تحديث | 2023-10-11 |
تاريخ النشر | 2023-06-25 |
تقييم | 5.00/5 مجموع تقييمات 4 |
المطور | Jonoym |
البريد الإلكتروني | [email protected] |
نوع الدفع | free |
اللغات المدعومة | en-GB |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Old Blackboard", "description": "Reverts Blackboard back to the old UI", "version": "1.1", "content_scripts": [ { "matches": [ "https:\/\/learn.uq.edu.au\/webapps\/*" ], "js": [ "code\/content.js" ], "css": [ "code\/styles.css" ], "run_at": "document_end" }, { "matches": [ "https:\/\/learn.uq.edu.au\/ultra\/course", "https:\/\/learn.uq.edu.au\/ultra" ], "js": [ "code\/redirect.js" ], "run_at": "document_start" } ], "icons": { "128": "128.png" } } |