Greasy Fork is available in English.

雲科 Tronclass 進階網頁操作

Tronclass 更多進階操作

  1. // ==UserScript==
  2. // @name 雲科 Tronclass 進階網頁操作
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.4
  5. // @description Tronclass 更多進階操作
  6. // @author BeenYan
  7. // @match https://eclass.yuntech.edu.tw/course/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=edu.tw
  9. // @grant none
  10. // @license MIT
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. const delay = async (ms = 100) => {
  15. return new Promise((resolve) => setTimeout(resolve, ms));
  16. };
  17.  
  18. const openNewTab = (event) => {
  19. // 按下中鍵
  20. if (event.button !== 1) return;
  21.  
  22. let target = event.target;
  23. while (true) {
  24. if (target.id.startsWith('learning-activity-')) {
  25. break
  26. }
  27.  
  28. target = target.parentNode;
  29. if (target === document) return;
  30. }
  31. const id = target.id.match(/\d+/)[0];
  32. const url = new URL(`learning-activity#/${id}`, window.location.href);
  33. window.open(url);
  34. };
  35.  
  36. (() => {
  37. 'use strict';
  38.  
  39. window.addEventListener("mousedown", openNewTab);
  40. const originalAddEventListener = window.addEventListener;
  41. window.addEventListener = function(type, listener, options) {
  42. if (type === 'blur') return;
  43. originalAddEventListener.call(this, type, listener, options);
  44. };
  45. })();