Quality of RWTH

Makes RWTH websites more enjoyable

Quality of RWTH là gì?

Quality of RWTH là một tiện ích mở rộng Chrome được phát triển bởi Leon Müller, và tính năng chính của nó là "Makes RWTH websites more enjoyable".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Quality of RWTH

Tải xuống các tệp mở rộng Quality of RWTH dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Quality of RWTH Quality of RWTH
ID hhjhbkpidgloeeflpnoajpicjhocbdjk
URL Chính Thức https://chromewebstore.google.com/detail/quality-of-rwth/hhjhbkpidgloeeflpnoajpicjhocbdjk
Mô tả Makes RWTH websites more enjoyable
Kích Thước Tệp 98.1 KB
Số Lần Cài Đặt 98
Phiên Bản Hiện Tại 1.8.16
Cập Nhật Lần Cuối 2024-02-26
Ngày Phát Hành 2023-05-15
Đánh Giá 5.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Leon Müller
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/Rc-Cookie/quality-of-rwth
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}