Greasy Fork

NoGithub

Stop students using GitHub.

当前为 2022-04-07 提交的版本,查看 最新版本

// ==UserScript==
// @name         NoGithub
// @namespace    http://tampermonkey.net/
// @version      0.1.1
// @description  Stop students using GitHub.
// @author       fyc
// @match        https://github.com/*
// @license      GPL 3.0
// @icon         https://www.google.com/s2/favicons?sz=64&domain=github.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    while (true){
        alert("You should not use github!");
        console.warn("Attempt of visiting GitHub detected.");
    }
    // Your code here...
})();