// ==UserScript==
// @name 广告屏蔽
// @namespace http://tampermonkey.net/
// @version 1.1.11
// @update 2021.07.18
// @description 自用,屏蔽一些网站的广告,如果也符合你的需求就下载吧(=・ω・=) 具体屏蔽列表看简介,不需要的屏蔽可以注释掉。
// @author charghet
// @run-at document-body
// @license GPL
// @include http*://www.imomoe.la/*
// @include http*://api.xiaomingming.org/cloud/mp6.php*
// @include
// @include http*://www.bilibili.com/
// @include http*://live.bilibili.com/*
// @include http*://www.bilibili.com/video/*
// @include http*://www.baidu.com/
// @include http*://fanyi.baidu.com/*
// @include http*://forum.xda-developers.com/*
// @downloadURL none
// ==/UserScript==
//屏蔽列表
//樱花动漫
var imomoe = RegExp("http.*://www.imomoe.la/.*");
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/.*");
(function() {
if(imomoe.test(location.href)){//樱花动漫
//console.log(document.head)
//右下角屏蔽
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);
}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{
console.log('广告屏蔽:无匹配');
}
})();