// ==UserScript== // @name Refresh Halt // @description Stops QuillBot from loading the page after 1 second // @version 1 // @license MIT // @include *://*quillbot.com/* // @run-at document-start // @namespace https://greasyfork.org/users/884210 // @downloadURL none // ==/UserScript== (function() { window.setTimeout(function () { window.stop(); }, 500); })();