Skip to content

Instantly share code, notes, and snippets.

@laixintao
Created October 16, 2021 14:55
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save laixintao/b322cf0ef71701eedfd6a353ae0496ac to your computer and use it in GitHub Desktop.
Save laixintao/b322cf0ef71701eedfd6a353ae0496ac to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Hide bilibili video popup
// @namespace http://tampermonkey.net/
// @version 0.1
// @description hide annoying pop up choices.
// @author laixintao
// @match https://www.bilibili.com/*
// @icon https://www.google.com/s2/favicons?domain=bilibili.com
// @grant GM_addStyle
// ==/UserScript==
(function() {
'use strict';
GM_addStyle('.bilibili-player-popup-area { display: none !important; }');
console.log('fuck bilibili!');
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment