Quality of RWTH

Makes RWTH websites more enjoyable

什么是Quality of RWTH?

Quality of RWTH是由Leon Müller开发的Chrome扩展程序,该扩展的主要功能是“Makes RWTH websites more enjoyable”。

扩展截图

screenshot

下载Quality of RWTH扩展crx文件

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