// ==UserScript== // @name Redirect veck.io to Discord Profile // @namespace http://tampermonkey.net/ // @version 1.0 // @description Automatically redirects from veck.io to a specific Discord user profile. // @author Your Name // @match *://veck.io/* // @run-at document-start // @grant none // @downloadURL https://update.greasyfork.icu/scripts/569463/Redirect%20veckio%20to%20Discord%20Profile.user.js // @updateURL https://update.greasyfork.icu/scripts/569463/Redirect%20veckio%20to%20Discord%20Profile.meta.js // ==/UserScript== (function() { 'use strict'; // The target Discord User ID const discordUserId = "1440906643108794408"; // Redirecting to the Discord profile URL window.location.replace(`https://discord.com{discordUserId}`); })();