Greasy Fork is available in English.

Access Denied

Pretends your access to a website is denied. Enter your webiste URL on line 6 (If URL contains www then add that too)

  1. // ==UserScript==
  2. // @name Access Denied
  3. // @namespace https://greatest.deepsurf.us/en/users/946530-devfishh
  4. // @version 1.0
  5. // @description Pretends your access to a website is denied. Enter your webiste URL on line 6 (If URL contains www then add that too)
  6. // @author DevFish
  7. // @match https://www.tiktok.com/*
  8. // @grant window.close
  9. // @license GNU GPLv3
  10. // ==/UserScript==
  11.  
  12. document.querySelector("body").remove();document.head.insertAdjacentHTML("afterend",`<title>Access Denied</title><h1>Access Denied</h1><h3>Your access to this webpage has been denied</h3><button id="close">Close</button>`);document.querySelector("head").remove();document.querySelector("html").setAttribute("oncontextmenu","return false");document.getElementById("close").onclick=function(){window.close()};setTimeout(function(){console.clear()},1000)