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" } } |