Simple Web Blocking

Creates Graphics and Moms.

  1. // ==UserScript==
  2. // @name Simple Web Blocking
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.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. // @match *://*.classroom.google.com/*
  16. // @grant none
  17. // @license MIT
  18. // do the @ match stuff and website to add more websites to b blocked,
  19. // ==/UserScript==
  20.  
  21. (function() {
  22. 'use strict';
  23. window.location.href = 'https://website-blocked-sorry.pages.dev/';
  24. })();