// ==UserScript== // @name 【PPTV】看球隐藏比分,白天把录像当直播看,不会看到比赛结果 // @namespace http://tampermonkey.net/ // @version 0.4 // @description 再也不用熬夜看球,或看录像时看到比分了。 // @author IQiu // @include *sports.pptv.com/* // @include *ppsport.com/* // @grant none // @require http://cdn.bootcss.com/jquery/1.12.4/jquery.min.js // @require http://code.jquery.com/jquery-latest.js // @downloadURL none // ==/UserScript== (function() { 'use strict'; var hideJiJing = true; var jijings = []; $(document.body).hide(); $('.pre.fl,.next.fr').on('click',function(){ $('.livebox').hide(); setTimeout(function(){ $('.livebox .score span').text(''); $('.livebox').show(); },1000); }); $(document).ready(function(){ $('.fighting-title').hide(); $('.information').hide(); $('.main.grid').hide(); $('.img.fl span').each(function(i,s){ try{ var tm = $(s).text(); if(tm.indexOf(':')>-1) { tm = tm.substring(0,tm.indexOf(':')); tm = parseFloat(tm); if(tm<20){ jijings.push($(s).closest('a.video-vod').hide()); } } }catch(e){} }); setTimeout(function(){$('li.bx:visible:first').trigger('click');},4000); $('.footer').hide(); $('.nav-wrap').hide(); $('.livebox .score span').text(''); $('.main p').each(function(i,v){ var t = $(v).text().replace(/[0123456789]/g,"[X]"); $(v).text(t); }); $('.fighting-siderbar').after('
'); $('#jijing').click(function(){ if(hideJiJing){ $(this).text('隐藏集锦'); for(var i=0;i