// ==UserScript== // @name bilibili直播净化 // @namespace https://github.com/lzghzr/GreasemonkeyJS // @version 3.0.9 // @author lzghzr // @description 屏蔽聊天室礼物以及关键字, 净化聊天室环境 // @supportURL https://github.com/lzghzr/GreasemonkeyJS/issues // @include /^https?:\/\/live\.bilibili\.com\/(?:blanc\/)?\d/ // @license MIT // @grant GM_addStyle // @grant GM_getValue // @grant GM_setValue // @run-at document-end // @downloadURL none // ==/UserScript== const defaultConfig = { version: 1528362160578, menu: { noKanBanMusume: { name: '看\u00a0\u00a0板\u00a0\u00a0娘', enable: false }, noGuardIcon: { name: '舰队标识', enable: false }, noHDIcon: { name: '活动标识', enable: false }, noVIPIcon: { name: '老爷标识', enable: false }, noMedalIcon: { name: '粉丝勋章', enable: false }, noUserLevelIcon: { name: '用户等级', enable: false }, noLiveTitleIcon: { name: '成就头衔', enable: false }, noSystemMsg: { name: '系统公告', enable: false }, noGiftMsg: { name: '礼物信息', enable: false } } }; const userConfig = JSON.parse(GM_getValue('blnvConfig', JSON.stringify(defaultConfig))); let config; if (userConfig.version === undefined || userConfig.version < defaultConfig.version) { for (const x in defaultConfig.menu) { try { defaultConfig.menu[x].enable = userConfig.menu[x].enable; } catch (error) { console.error(error); } } config = defaultConfig; } else config = userConfig; const elmStyleCSS = GM_addStyle(''); AddCSS(); ChangeCSS(); const elmDivAside = document.querySelector('.aside-area'); if (elmDivAside !== null) { let done = false; const asideObserver = new MutationObserver(mutations => { mutations.forEach(mutation => { mutation.addedNodes.forEach(addedNode => { if (!done && addedNode instanceof HTMLLIElement && addedNode.parentElement !== null && addedNode.parentElement.className === 'tab-list') { asideObserver.disconnect(); done = true; addedNode.parentElement.firstElementChild.click(); AddUI(); } }); }); }); asideObserver.observe(elmDivAside, { childList: true, subtree: true }); } function ChangeCSS() { let cssText = ''; if (config.menu.noKanBanMusume.enable) cssText += ` .haruna-sekai-de-ichiban-kawaii { display: none !important; }`; if (config.menu.noGuardIcon.enable) cssText += ` .chat-history-list .guard-buy, .chat-history-list .guard-icon, .chat-history-list .welcome-guard, .chat-history-list .danmaku-item.guard-level-1:after, .chat-history-list .danmaku-item.guard-level-2:after, .chat-history-list .danmaku-item.guard-level-1:before, .chat-history-list .danmaku-item.guard-level-2:before { display: none !important; } .chat-history-list .danmaku-item.guard-danmaku .vip-icon { margin-right: 5px !important; } .chat-history-list .danmaku-item.guard-danmaku .admin-icon, .chat-history-list .danmaku-item.guard-danmaku .title-label, .chat-history-list .danmaku-item.guard-danmaku .anchor-icon, .chat-history-list .danmaku-item.guard-danmaku .user-level-icon, .chat-history-list .danmaku-item.guard-danmaku .fans-medal-item-ctnr { margin-right: 5px !important; } .chat-history-list .danmaku-item.guard-level-1, .chat-history-list .danmaku-item.guard-level-2 { padding: 4px 5px !important; margin: 0 !important; } .chat-history-list .danmaku-item.guard-danmaku .user-name { color: #23ade5 !important; } .chat-history-list .danmaku-item.guard-danmaku .danmaku-content { color: #646c7a !important; }`; if (config.menu.noHDIcon.enable) cssText += ` .chat-history-list a[href^="/hd/"], .monster-wrapper, #santa-hint-ctnr { display: none !important; } .chat-history-list .chat-item.danmaku-item .user-name { color: #23ade5 !important; }`; if (config.menu.noVIPIcon.enable) cssText += ` .chat-history-list .vip-icon, .chat-history-list .welcome-msg { display: none !important; }`; if (config.menu.noMedalIcon.enable) cssText += ` .chat-history-list .fans-medal-item-ctnr { display: none !important; }`; if (config.menu.noUserLevelIcon.enable) cssText += ` .chat-history-list .user-level-icon { display: none !important; }`; if (config.menu.noLiveTitleIcon.enable) cssText += ` .chat-history-list .title-label { display: none !important; }`; if (config.menu.noSystemMsg.enable) cssText += ` #pk-vm+div, .bilibili-live-player-video-gift, .chat-history-list .system-msg { display: none !important; }`; if (config.menu.noGiftMsg.enable) cssText += ` .chat-history-list .gift-item, .bilibili-live-player-danmaku-gift, .chat-history-panel .penury-gift-msg, .haruna-sekai-de-ichiban-kawaii .super-gift-bubbles { display: none !important; } .chat-history-list.with-penury-gift { height: 100% !important; }`; elmStyleCSS.innerHTML = cssText; } function AddUI() { const elmDivBtns = document.querySelector('.icon-left-part'); const elmDivGun = document.createElement('div'); const elmDivMenu = document.createElement('div'); let html = ''; elmDivGun.id = 'gunBut'; elmDivMenu.id = 'gunMenu'; elmDivMenu.className = 'gunHide'; for (const x in config.menu) { html += `