Just use these sites!

Prevents students from accessing gaming and other non-class related websites.

  1. // ==UserScript==
  2. // @name Just use these sites!
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Prevents students from accessing gaming and other non-class related websites.
  6. // @author Olivia Wang
  7. // @match *://*/*
  8. // @exclude https://microbit.org/*
  9. // @exclude https://*.microbit.org/*
  10. // @exclude https://scratch.mit.edu/*
  11. // @grant none
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. 'use strict';
  16. console.log("working");
  17.  
  18. main_url = "https://scratch.mit.edu/";
  19.  
  20. window.location.href = main_url;
  21. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址