Ethos Sub2Get Bypasser

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

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

QingJ © 2025

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