NoGithub

Stop students using GitHub.

  1. // ==UserScript==
  2. // @name NoGithub
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1.3
  5. // @description Stop students using GitHub.
  6. // @author fyc
  7. // @match https://github.com/*
  8. // @license GPL 3.0
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=github.com
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. var i = 0;
  16. while (i < 5){
  17. alert("You should not use github!");
  18. console.warn("Attempt of visiting GitHub detected.");
  19. i++;
  20. }
  21. location.assign("https://www.baidu.com");
  22. })();

QingJ © 2025

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