Ethos MBoost Bypasser

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

  1. // ==UserScript==
  2. // @name Ethos MBoost Bypasser
  3. // @namespace https://gf.qytechs.cn
  4. // @version 1.2
  5. // @description Bypasses MBoost using the Ethos API and redirects the user to the bypassed link.
  6. // @author Shehajeez
  7. // @match https://mboost.me/a/*
  8. // @exclude https://mboost.me
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. var currenturl = window.location.href;
  16.  
  17. fetch('https://ethos-testing.vercel.app/api/mboost/bypass?link=' + currenturl)
  18. .then(response => response.json())
  19. .then(data => {
  20. console.log('redirecting to the bypassed link:', data.bypassed);
  21. window.location.href = data.bypassed;
  22. })
  23. .catch(error => console.error('error:', error));
  24. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址