Hide dead links - RARGB

Hides magnet links without any seeders.

安装此脚本?
作者推荐脚本

您可能也喜欢RARGB Search - YIFY Movies

安装此脚本
  1. // ==UserScript==
  2. // @name Hide dead links - RARGB
  3. // @namespace https://gf.qytechs.cn/en/users/670188-hacker09?sort=daily_installs
  4. // @version 6
  5. // @description Hides magnet links without any seeders.
  6. // @author hacker09
  7. // @include https://rargb.to/search/?search=*
  8. // @icon https://t3.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://rargb.to
  9. // @run-at document-end
  10. // @grant none
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15. new MutationObserver(function() {
  16. document.querySelectorAll('[width="50px"].lista:nth-child(6)').forEach(function(el) { //forEach link start the MutationObserver
  17. if (el.innerText === '0') { //If seeder count is zero
  18. el.parentNode.style.display = 'none'; //Hide the parent element
  19. } //Finishes the if condition
  20. }) //Finishes the forEach loop
  21. }).observe(document, { childList: true, subtree: true }); //Finishes the MutationObserver
  22. })();

QingJ © 2025

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