Greasy Fork is available in English.

krnl bypasser

Disable this for other stuff. only use this for KRNL. you will still co the captcha on the website and once you go to linkvertise give the script 15 seconds cause krnl has a waiting time of 15 seconds minium and then enjoy :).

Versión del día 13/6/2021. Echa un vistazo a la versión más reciente.

// ==UserScript==
// @name         krnl bypasser
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Disable this for other stuff. only use this for KRNL. you will still co the captcha on the website and once you go to linkvertise give the script 15 seconds cause krnl has a waiting time of 15 seconds minium and then enjoy :).
// @author       You
// @match        *://*.linkvertise.com/*
// @match        *://*.linkvertise.net/*
// @match        *://*.link-to.net/*
// @exclude      *://linkvertise.com/58504*
// @exclude      *://linkvertise.net/58504*
// @exclude      *://link-to.net/58504*
// @exclude      *://direct-link.net/58504*
// @exclude      *://file-link.net/58504*
// @exclude      *://up-to-down.com/58504*
// @grant        GM.xmlHttpRequest
// @icon         https://www.google.com/s2/favicons?domain=linkvertise.com
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var url = "https://vacant-curtly-composure.herokuapp.com/bypass2?url=" + window.location.href;

    function reqListener () {
        var a = this.responseText;
        var b = JSON.parse(a);
        setTimeout(function(){
            window.location = b.destination;
        }, 15100);
    }

    var oReq = new XMLHttpRequest();
    oReq.addEventListener("load", reqListener);
    oReq.open("GET", url);
    oReq.send();
})();