您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove live streaming mosaic
// ==UserScript== // @name 哔哩哔哩直播去马赛克 // @namespace http://tampermonkey.net/ // @version 1.0 // @description Remove live streaming mosaic // @author 320012762 // @match *.bilibili.com/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // 在页面加载完成之后 window.onload = function () { // 找到并隐藏元素 var maskPanel = document.getElementById("web-player-module-area-mask-panel"); if (maskPanel) { maskPanel.style.display = "none"; // 使用 CSS 属性 hide the element } // 设置一个3秒的定时器 setTimeout(function () { // 再次隐藏元素 maskPanel.style.display = "none"; // 重新设置定时器 setTimeout(arguments.callee, 1000); // 递归调用自己,每隔3秒重复一次 }, 3000); // 3秒后执行 }; })();