您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
try to get good torrents!
// ==UserScript== // @name 过滤rarbg中IMDB小于7分的内容 // @namespace http://babesun.com/ // @version 0.1 // @description try to get good torrents! // @author Babesun // @match http*://rarbg.to/torrents.php* // @grant none // ==/UserScript== (function() { 'use strict'; // Your code here... $('tr.lista2 td+td.lista span[style^=color]').each(function(){ if($(this).html().match(/IMDB: (.*)\/10/)){ var substr = $(this).html().match(/IMDB: (.*)\/10/)[1]; }; if(Number(substr)<7 || substr==undefined){ $(this).parent().parent().remove(); }else{ $(this).html($(this).html().replace('IMDB:','IMDB:<b style="color:red">')); $(this).html($(this).html().replace('/10','</b>/10')); } }); })();