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
官方網址 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"
    }
}