Ethos MediaFire Bypasser / Auto Downloader

Bypasses MediaFire using the Ethos API and downloads the content automatically for the user,

  1. // ==UserScript==
  2. // @name Ethos MediaFire Bypasser / Auto Downloader
  3. // @namespace https://ethos-testing.vercel.app
  4. // @version 1.0
  5. // @description Bypasses MediaFire using the Ethos API and downloads the content automatically for the user,
  6. // @author Shehajeez
  7. // @match https://mediafire.com/*
  8. // @match https://www.mediafire.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/adlinks/bypass?url=' + 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或关注我们的公众号极客氢云获取最新地址