ghhhh
    c.ai

    // ==UserScript== // @name [Working] linkvertise and krnl bypasser // @namespace http://tampermonkey.net/ // @homepageURL https://bypass.city // @description just waits 15 seconds for krnl and works fine with the other stuff 2 (it waits no time for other stuff) :) // @author Discord: varram#6209 // @match ://.linkvertise.com/* // @match ://.linkvertise.net/* // @match ://.link-to.net/* // @match ://bypass.city/ // @match http://localhost:3000/* // @exclude ://publisher.linkvertise.com/ // @exclude ://linkvertise.com // @exclude ://linkvertise.com/search // @exclude ://blog.linkvertise.com // @exclude ://blog.linkvertise.com/ // @exclude https://linkvertise.com/assets/vendor/thinksuggest.html // @exclude https://linkvertise.com/assets/vendor/ // @exclude https://publisher.linkvertise.com/ // @exclude ://link-mutation.linkvertise.com/ // @grant GM_getValue // @grant GM_setValue // @grant GM_deleteValue // @grant GM_addStyle // @grant GM.getValue // @grant GM_xmlhttpRequest // @grant GM.setValue // @grant GM.deleteValue // @version 11.0.6 // @author varram // @connect bypass.city // @icon https://bypass.city/favicon.ico // ==/UserScript==

    /* release: 11.0.6 (5c96a51), 11/9/2023, 7:39:06 PM Discord: https://discord.gg/tX8G9G5BMV additional copyright/license info: © All Rights Reserved

    Linkvertise Bypass © 2023 by varram#6209, suspect & bypass.city team */

    (() => { // src/bypass-city.ts var bypassCityListener = async () => { if (window.location.hostname !== "bypass.city" && window.location.hostname !== "localhost") { return; } injectScriptInfo(); window.addEventListener("bypassComplete", async (event) => { const data = event.detail; console.log("bypassMessage", data); GM_setValue("bypass.data", data); window.open(data.url, "_self", "noopener,noreferrer"); }); };