[Extratorrent.cc] Quick Download

Converts all ad download links to direct download.

  1. // ==UserScript==
  2. // @name [Extratorrent.cc] Quick Download
  3. // @namespace pxgamer
  4. // @version 0.3.1
  5. // @description Converts all ad download links to direct download.
  6. // @author pxgamer
  7. // @include *extratorrent.cc/*
  8. // @require https://code.jquery.com/jquery-3.1.0.min.js
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14.  
  15. $('a[href^="/torrent_download/"]').each(function() {
  16. let torrentId = $(this).attr("href").split("/")[2];
  17. let newUrl = "/download/" + torrentId;
  18. $(this).attr("href", newUrl);
  19. });
  20. })();

QingJ © 2025

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