Greasy Fork is available in English.

哔哩哔哩去除弹幕投票器与一键三连提示器

去除弹幕投票器与一键三连提示器

// ==UserScript==
// @name         哔哩哔哩去除弹幕投票器与一键三连提示器
// @namespace    http://tampermonkey.net/
// @version      0.3
// @description  去除弹幕投票器与一键三连提示器
// @author       tuntun
// @match        https://www.bilibili.com/video/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @license      MIT
// @grant        none
// ==/UserScript==

(function () {
  "use strict";
  let styleStr = `
    .bilibili-player-video-popup-vote {
      display: none !important;
    }
    .bilibili-player-video-popup-guide-all {
      display: none !important;
    }
  `
  let body = document.body;
  let styleDom = document.createElement('style');
  styleDom.id = 'tuntun-bilibili-delete-vote'
  styleDom.innerHTML = styleStr;
  body.appendChild(styleDom);
})();