Quality of RWTH

Makes RWTH websites more enjoyable

ما هو Quality of RWTH؟

Quality of RWTH هو إضافة Chrome تم تطويرها بواسطة Leon Müller، والميزة الرئيسية لها هي "Makes RWTH websites more enjoyable".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Quality of RWTH

قم بتنزيل ملفات الامتداد Quality of RWTH بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

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