Google Classroom - Moonlight

Custom theme for Google Classroom

当前为 2021-08-02 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name Google Classroom - Moonlight
  3. // @namespace Violentmonkey Scripts
  4. // @match https://classroom.google.com/*
  5. // @grant none
  6. // @version 2.0
  7. // @author Risuleia
  8. // @icon https://i.pinimg.com/originals/98/d3/a2/98d3a283f98cded8e639957e935bd373.png
  9. // @require https://code.jquery.com/jquery-3.6.0.min.js
  10. // @license MIT
  11. // @description Custom theme for Google Classroom
  12. // ==/UserScript==
  13.  
  14. // ============ START ============ //
  15. (function() {
  16. 'use strict';
  17.  
  18. var style = `
  19. /* css */
  20. @import url('https://github.com/Risuleia/GoogleClassroom-Moonlight/raw/main/Google%20Classroom%20-%20Moonlight.css');
  21. `;
  22.  
  23. var elem = document.createElement('style');
  24. elem.type = 'text/css';
  25. elem.innerText = style;
  26. document.head.appendChild(elem);
  27. })();
  28.  
  29. // ============ END ============ //