Quality of RWTH

Makes RWTH websites more enjoyable

Quality of RWTH क्या है?

Quality of RWTH Leon Müller द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes RWTH websites more enjoyable"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Quality of RWTH एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}