XMUM Moodle Submission Reminder

Try to take over the moodle!

当前为 2025-01-16 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name XMUM Moodle Submission Reminder
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-12-17
  5. // @description Try to take over the moodle!
  6. // @author Reality361
  7. // @match https://l.xmu.edu.my/mod/assign/*
  8. // @icon https://l.xmu.edu.my/pluginfile.php/1/core_admin/favicon/64x64/1726281221/XMUM%20Logo.PNG
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. var introElement = document.getElementById("intro");
  17. introElement.insertAdjacentHTML('afterend', '<p>交任何东西/截止前看一下:<br>文件格式对吗<br>文件名对吗<br>封面、正文、后缀、评分标准的部分都全吗<br>写/填名字和学号了吗<br>所有题都写了吗<br>写的对吗<br>还要交其他的文件吗<br>提交成功了吗<br>小组中的所有人都要交吗<br>截止后就没有下次了</p>');
  18. })();