// ==UserScript==
// @name 广告屏蔽
// @namespace http://tampermonkey.net/
// @version 1.4.0
// @update 2024.03.21
// @description 自用,屏蔽一些网站的广告,如果也符合你的需求就下载吧(=・ω・=) 具体屏蔽列表看简介,不需要的屏蔽可以注释掉。
// @author charghet
// @run-at document-body
// @license GPL
// @match http*://www.yhdmp.net/*
// @match http*://api.xiaomingming.org/cloud/mp6.php*
// @match http*://www.bilibili.com/
// @match http*://live.bilibili.com/*
// @match http*://www.bilibili.com/video/*
// @match http*://www.baidu.com/
// @match http*://fanyi.baidu.com/*
// @match http*://forum.xda-developers.com/*
// @match http*://www.btnull.nu/*
// @downloadURL none
// ==/UserScript==
//屏蔽列表
//樱花动漫
var imomoe = RegExp("http.*://www.yhdmp.net/.*");
var imomoe2 = RegExp("http.*://api.xiaomingming.org/cloud/mp6.php.*");
//哔哩哔哩
var bilibili = RegExp("http.*://www.bilibili.com/$");
var bilibili2 = RegExp("http.*://live.bilibili.com/.*");
var bilibili3 = RegExp("http.*://www.bilibili.com/video/.*");
//百度首页
var baidu = RegExp("http.*://www.baidu.com/$");
//百度翻译
var baidufanyi = RegExp("http.*://fanyi.baidu.com/.*");
//XDA
var xda = RegExp("http.*://forum.xda-developers.com/.*");
//btnull
var btnull = RegExp("http.*://www.btnull.nu/.*");
(function() {
if(imomoe.test(location.href)){//樱花动漫
//右下角屏蔽
document.head.insertAdjacentHTML('beforeend','');
//左右横幅屏蔽
document.head.insertAdjacentHTML('beforeend','');
//底部横幅
document.head.insertAdjacentHTML('beforeend','');
//不新建标签,直接打开链接
document.onreadystatechange = function(){
if(document.readyState == "interactive"){
var list = document.getElementsByTagName('a');
for(let i = 0;i < list.length;i++){
list[i].target = '_self';
}
}
}
}else if(imomoe2.test(location.href)){
//暂停页面屏蔽
document.head.insertAdjacentHTML('beforeend','');
}else if(bilibili.test(location.href)){//哔哩哔哩
//主页横幅屏蔽
document.head.insertAdjacentHTML('beforeend','');
}else if(bilibili2.test(location.href)){//哔哩哔哩直播
//开头,勿注释
var s = '';
document.head.insertAdjacentHTML('beforeend',s);
//播放器模糊阻挡(遮罩)
window.onload = function() {
var t = setInterval(() => {
console.log(1);
var e = document.getElementById('web-player-module-area-mask-panel');
if (e !== null) {
setTimeout(()=> {
e.style.display = 'none';
clearInterval(t);
}, 800);
}
},500);
setInterval(() => {
clearInterval(t);
}, 10000);
};
}else if(bilibili3.test(location.href)){//哔哩哔哩视频
//右下角、横幅屏蔽
document.head.insertAdjacentHTML('beforeend','');
}else if(baidu.test(location.href)){//百度首页
//搜索框底部新闻屏蔽
document.head.insertAdjacentHTML('beforeend','');
}else if(baidufanyi.test(location.href)){//百度翻译
//右边和底部广告
document.head.insertAdjacentHTML('beforeend','');
}else if(xda.test(location.href)){//XDA
document.head.insertAdjacentHTML('beforeend','');
}else if(btnull.test(location.href)){//btnull
document.head.insertAdjacentHTML('beforeend','');
}else{
console.log('广告屏蔽:无匹配');
}
})();