JustPaste.it

// ==UserScript==
// @name techkreative.xyz
// @namespace http://tampermonkey.net/
// @version 0.1
// @description try to take over the world!
// @author You
// @match https://techkreative.xyz/*
// @grant none
// ==/UserScript==

(function() {
'use strict';
let a = document.getElementsByTagName("a");
location.replace(a[17].getAttribute("href"));
// Your code here...
})();