TMD filtru torrente

ascunde torrentele care nu le doresti

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name        TMD filtru torrente
// @description ascunde torrentele care nu le doresti
// @namespace   https://greasyfork.org/en/users/213-drakulaboy
// @include     *torrentsmd.*/browse.php*
// @version     1.5
// @grant       none
// @icon         http://i.imgur.com/uShqmkR.png
// @require     http://code.jquery.com/jquery-2.1.1.min.js
// ==/UserScript==
$(document.getElementsByClassName('.tableTorrents')[0]).ready(function() {
    var exclude = ['Дом-2',
                   'Танцы [Season',
                   'Vocea României',
                   'САШАТАНЯ',
                   'Лондонград',
                   'Vampire Diaries',
                   'Универ',
                   'Las Fierbinţi',
                   'Квест',
                   '[Trance]', 
                   '[Sport]',
                   'iOS', 
                   'TELESYNC', 
                   'CamRip', 
                   'Anime', 
                   'AniMedia', 
                   'СашаТаня', 
                   'Деффчонки', 
                   'Понять. Простить', 
                   'True Blood', 
                   'Уилфред', 
                   'КВН.', 
                   'Дурнушек.Net',
                   'Битва экстрасенсов',
                   'Квартирный вопрос', 
                   'Чрезвычайное происшествие', 
                   'Pretty Little Liars', 
                   'Avenida Brasil', 
                   'Каникулы в Мексике', 
                   'Teen Wolf', 
                   'Пусть говорят.',
                   '/ CAM]',
                   '[ITA]',
                   '[Alternative]',
                   '[Rock]',
                   '[AlternRock]',
                   '[Metalcore]',
                   '[Hard Rock]',
                   '[Heavy Metal]',
                   'Got Talent',
                   '[Drama]',
                   'Comedy Woman',
                   'Голос [Season',
                   '[Romance]'];
    exclude.forEach(function(i){
        $('.tableTorrents tr:contains(' + i + ')').hide();
        $('.tableTorrents b[title="Închis"]').closest('tr').hide();
    });
});