Greasy Fork is available in English.

百度音乐盒去广告

突破会员限制,去除百度音乐盒广告//To remove the Ads on baidu play box

您查看的为 2014-07-04 提交的版本。查看 最新版本

// ==UserScript==
// @name       百度音乐盒去广告
// @namespace  http://use.i.E.your.homepage/
// @version    0.1
// @description  突破会员限制,去除百度音乐盒广告//To remove the Ads on baidu play box
// @match      http://play.baidu.com/
// @grant       none
// @copyright  2014/06, WangHsin-che
// ==/UserScript==

var width_c4=$('.column4').width();
var right_c2=$('.column2').css('right');

$('.column3').css({'right':0});
$('.column4').css({'display':'none'});
$('.column2').css({'right':function(){return parseInt(right_c2,10)-width_c4;}});
$('.m-client-product').css({'display':'none'});
$('#pauseAd').remove();
$('.down-mobile').remove();
console.log('Ads have been removed~');