Simple Web Blocking

Creates Graphics and Moms.

As of 2025-03-17. See the latest version.

  1. // ==UserScript==
  2. // @name Simple Web Blocking
  3. // @namespace http://tampermonkey.net/
  4. // @version 1
  5. // @description Creates Graphics and Moms.
  6. // @author Brune
  7. // @match *://*.facebook.com/*
  8. // @match *://*.coolmathgames.com/*
  9. // @match *://*.crazygames.com/*
  10. // @match *://*.poki.com/*
  11. // @match *://*.youtube.com/*
  12. // @match *://*.tiktok.com/*
  13. // @match *://*.bloxd.io/*
  14. // @match *://*.instagram.com/*
  15. // @grant none
  16. // @license MIT
  17. // do the @ match stuff and website to add more websites to b blocked,
  18. // ==/UserScript==
  19.  
  20. (function() {
  21. 'use strict';
  22. window.location.href = 'https://website-blocked-sorry.pages.dev/';
  23. })();