🏠 Home 

bimi动漫优化

bimi动漫(M站)去广告以及一些其他优化


Install this script?
// ==UserScript==
// @name         bimi动漫优化
// @namespace    http://tampermonkey.net/
// @version      2.3
// @icon         https://www.bimiacg5.net/favicon.ico
// @description  bimi动漫(M站)去广告以及一些其他优化
// @author       CodeLumos
// @homepageURL  https://github.com/codelumos/tampermonkey-scripts
// @match        *://*.dodoge.me/*
// @match        *://*.bimiacg.net/*
// @match        *://*.bimiacg4.net/*
// @match        *://*.bimiacg5.net/*
// @grant        GM_addStyle
// ==/UserScript==
(function () {
'use strict';
// 去广告
GM_addStyle("#HMcoupletDivleft {display: none;}"); // 左侧悬浮广告
GM_addStyle("#HMcoupletDivright {display: none;}"); // 右侧悬浮广告
GM_addStyle(".tuiguang {display: none;}"); // 横幅广告
setInterval(function () {
$("#HMRichBox").remove(); // 右下角广告
$("iframe").contents().find("#adv_wrap_hh").remove(); // 播放器暂停广告
}, 500);
// 允许选中和右键
document.oncontextmenu = function () {
return true;
};
document.onselectstart = function () {
return true;
};
// 还原鼠标样式
document.body.style.cursor = "default";
$("a").hover(function () {
$("a").css("cursor", "pointer");
})
// 删除伪搜索历史框
$(".search-history").remove();
// 调整导航栏二级菜单的层级和宽度,避免被关灯按钮遮挡并变为竖排
$(".wrapper > ul > li > ul").css({"z-index": "999", "width": "130"});
// 对齐提示条
$("div[style]").each(function () {
if ($(this).css("width") === "1155px") {
$(this).css({"width": "1190px", "margin-left": "", "margin-right": ""});
}
})
// 删除APP推荐遮罩层
$("#bkcl").remove();
})();