Stops QuillBot from loading the page after 1 second
Fra
// ==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://greatest.deepsurf.us/users/884210
// ==/UserScript==
(function() {
window.setTimeout(function () {
window.stop();
}, 500);
})();