Quality of RWTH
Makes RWTH websites more enjoyable
Quality of RWTH란 무엇입니까?
Quality of RWTH은(는) Leon Müller에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Makes RWTH websites more enjoyable"입니다.
확장 프로그램 스크린샷
Quality of RWTH 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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 |
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" } } |