Refresh Halt

Stops QuillBot from loading the page after 1 second

As of 08. 03. 2022. See the latest version.

// ==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);
})();