Ethos Sub2Unlock Bypasser

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

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

QingJ © 2025

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