Nightcore crack

Crack for nightcore.app

// ==UserScript==
// @name        Nightcore crack
// @namespace   Violentmonkey Scripts
// @match       https://nightcore.app/
// @homepageURL https://dreaming.codes
// @grant       none
// @version     1.1
// @author      DreamingCodes
// @license MIT
// @description Crack for nightcore.app
// ==/UserScript==
let originalFetch = window.fetch;
window.fetch = async (...args) =>{
  if(args[0] == "https://patreon.nightcore.app/patron"){
    console.log("FUCK PATREON LICENSE")
    return {ok: true}
  }
  let result = await originalFetch(...args);
  return result;
}