Greasy Fork is available in English.

Ethos LetsBoost.net Bypasser

Bypasses LetsBoost.net using the Ethos API and redirects the user to the bypassed link.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
// ==UserScript==
// @name         Ethos LetsBoost.net Bypasser
// @namespace    https://greasyfork.org
// @version      1.0
// @description  Bypasses LetsBoost.net using the Ethos API and redirects the user to the bypassed link.
// @author       Shehajeez
// @match        https://letsboost.net/*
// @exclude      https://letsboost.net
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var currenturl = window.location.href;

    fetch('https://ethos-testing.vercel.app/api/letsboost/bypass?link=' + currenturl)
        .then(response => response.json())
        .then(data => {
            console.log('redirecting to the bypassed link:', data.bypassed);
            window.location.href = data.bypassed;
        })
        .catch(error => console.error('error:', error));
})();