NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Krnl Key Bypass // @namespace http://tampermonkey.net/ // @version 0.2 // @description bypass krnl key // @author not getting blacklisted ggez // @match https://linkvertise.com/48193/thekrnlkey?o=sharing // @match https://linkvertise.com/48193/krnlc3?o=sharing // @match https://linkvertise.com/48193/krnlc4?o=sharing // @match https://linkvertise.com/48193/krnlkey?o=sharing // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; var key_site = "https://cdn.krnl.ca/getkey.php"; var currentLink = document.location; function wait(ms){ var start = new Date().getTime(); var end = start; new Date().getTime(); } var linkvertise1, linkvertise2, linkvertise3, linkvertise4; linkvertise1 = "https://linkvertise.com/48193/thekrnlkey?o=sharing" linkvertise2 = "https://linkvertise.com/48193/krnlc3?o=sharing" linkvertise3 = "https://linkvertise.com/48193/krnlc4?o=sharing" linkvertise4 = "https://linkvertise.com/48193/krnlkey?o=sharing" if (currentLink == linkvertise1 || currentLink == linkvertise2 || currentLink == linkvertise3 || currentLink == linkvertise4) { setTimeout(function(){ location.replace(key_site); }, 15000); } } )();