WebsiteBlocker

Blocking websites has never beem easier! Just add an website in the Match line, and it will be blocked!

  1. // ==UserScript==
  2. // @name WebsiteBlocker
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description Blocking websites has never beem easier! Just add an website in the Match line, and it will be blocked!
  6. // @author Firel
  7. // @match https://*.net
  8. // @match http://example.com
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. // Your code here...
  16. alert("This page has been blocked and is no longer veiwable.");
  17. window.setTimeout(function(){ window.location = "about:home"; },30);
  18.  
  19. })();

QingJ © 2025

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