Greasy Fork is available in English.
挡住我看老婆了
// ==UserScript==
// @name Bilibili弹幕投票屏蔽
// @namespace http://tampermonkey.net/
// @version 1.4.1
// @description 挡住我看老婆了
// @author CLDXiang
// @website https://github.com/CLDXiang/tampermonkey
// @license MIT
// @match *://*bilibili.com/*
// @grant none
// @run-at document-end
// ==/UserScript==
"use strict";
(() => {
// src/shared/css.ts
function insertStyle(css, key) {
const style = document.createElement("style");
style.innerHTML = css;
if (key)
style.dataset[key] = "";
document.head.appendChild(style);
}
// src/hide-bili-vote/main.mts
insertStyle(".bilibili-player-video-popup-vote,.bili-vote { display: none !important; }");
})();