Quality of RWTH
Makes RWTH websites more enjoyable
Quality of RWTHคืออะไร?
Quality of RWTH เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Leon Müller และคุณลักษณะหลักของมันคือ "Makes RWTH websites more enjoyable"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Quality of RWTH
ดาวน์โหลดไฟล์ส่วนขยาย Quality of RWTH ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Adds some quality-of-life features to the RWTH websites, particularly to RWTHMoodle, mainly: - Auto-forward from unnecessary pre-login pages - Skip the incredibly slow PDF annotator and just display the PDF directly (can be disabled like all features) - Adds a menu in the toolbar to quickly navigate to all courses, to avoid having to wait for hours for the Moodle dashboard to load - Adds a button to download OpenCast videos which can usually not be downloaded directly from the moodle page I'm not usually coding in JS or HTML, so don't expect any masterpiece, particularly not in terms of design. Form follows function.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Quality of RWTH |
ID | hhjhbkpidgloeeflpnoajpicjhocbdjk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/quality-of-rwth/hhjhbkpidgloeeflpnoajpicjhocbdjk |
คำอธิบาย | Makes RWTH websites more enjoyable |
ขนาดไฟล์ | 98.1 KB |
จำนวนการติดตั้ง | 98 |
เวอร์ชันปัจจุบัน | 1.8.16 |
อัปเดตครั้งล่าสุด | 2024-02-26 |
วันที่เผยแพร่ | 2023-05-15 |
คะแนน | 5.00/5 รวมทั้งหมด 4 คะแนน |
ผู้พัฒนา | Leon Müller |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/Rc-Cookie/quality-of-rwth |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Quality of RWTH", "version": "1.8.16", "description": "Makes RWTH websites more enjoyable", "permissions": [ "*:\/\/*.rwth-aachen.de\/*", "*:\/\/*.rwth.video\/*", "storage", "downloads" ], "content_scripts": [ { "matches": [ "*:\/\/*.rwth-aachen.de\/*", "*:\/\/*.rwth.video\/*" ], "js": [ "rwthTools.js" ] } ], "background": { "service_worker": "server.js" }, "options_ui": { "page": "options.html" }, "commands": { "_execute_action": { "suggested_key": { "default": "Alt+R", "mac": "MacCtrl+R" } } }, "action": { "default_icon": "icons\/htwr.png", "browser_style": true, "default_popup": "popup.html" } } |