Embed Sandspiel

Embed Sandspiel into another page

  1. // ==UserScript==
  2. // @name Embed Sandspiel
  3. // @namespace https://your-website.com
  4. // @version 1.0
  5. // @description Embed Sandspiel into another page
  6. // @author Your Name
  7. // @match https://classroom.google.com/u/1/
  8. // @match https://classroom.google.com/u/0/
  9. // @match https://classroom.google.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Create an iframe element to embed the Sandspiel website
  17. var iframe = document.createElement('iframe');
  18. iframe.src = 'https://sandspiel.club/';
  19. iframe.style.width = '100%';
  20. iframe.style.height = '600px'; // Set the height as desired
  21. iframe.style.border = 'none';
  22.  
  23. // Append the iframe to the target page
  24. document.body.appendChild(iframe);
  25. })();