Greasy Fork 支持简体中文。

Embed Shellshock.io Game

Embeds Shell Shockers into Google Classroom

  1. // ==UserScript==
  2. // @name Embed Shellshock.io Game
  3. // @namespace https://your-website.com
  4. // @version 1.0
  5. // @description Embeds Shell Shockers into Google Classroom
  6. // @author Your Name
  7. // @match https://classroom.google.com/u/1/calendar/this-week/course/all
  8. // @match https://classroom.google.com/u/0/calendar/this-week/course/all
  9. // @match https://classroom.google.com/u/calendar/this-week/course/all
  10. // @match https://classroom.google.com/u/1/
  11. // @match https://classroom.google.com/u/0/
  12. // @match https://classroom.google.com
  13. // @match https://classroom.google.com/h
  14.  
  15. // @grant none
  16. // ==/UserScript==
  17.  
  18. (function() {
  19. 'use strict';
  20.  
  21. // Create an iframe element to embed the Algebra Game
  22. var iframe = document.createElement('iframe');
  23. iframe.src = 'https://algebra.best/?showAd=18b64894dc1&scriptVersion=0.2.1'; // URL of the game
  24. iframe.style.width = '800px';
  25. iframe.style.height = '600px';
  26. iframe.style.border = 'none';
  27. iframe.style.marginLeft = '100px';
  28.  
  29. // Append the iframe to the target page
  30. document.body.appendChild(iframe);
  31. })();