Nyaa hide 0 seeders

Hide torrent with 0 seeders

当前为 2018-07-03 提交的版本,查看 最新版本

// ==UserScript==
// @name         Nyaa hide 0 seeders
// @namespace    [email protected]
// @version      1.0
// @description  Hide torrent with 0 seeders
// @include      https://nyaa.si/*
// @include      https://sukebei.nyaa.si/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    var nodes = document.querySelectorAll('td[style="color: green;"]');
    for(var i = 0; i < nodes.length; ++i) {
        if(nodes[i].textContent == "0")
            nodes[i].parentNode.remove();
    }
})();