消除哔哩哔哩暂停按钮

消除哔哩哔哩暂停按钮,方便截图

"use strict";
// ==UserScript==
// @name       消除哔哩哔哩暂停按钮
// @namespace    https://github.com/
// @version      2023.12.28
// @description   消除哔哩哔哩暂停按钮,方便截图
// @author       作者名
// @match        *://www.bilibili.com/video/*
// @match        *://www.bilibili.com/festival/*
// @match        *://www.bilibili.com/bangumi/play/*
// @match        *://www.bilibili.com/cheese/play/*
// @grant        unsafeWindow
// ==/UserScript==

(function() {
    'use strict';

    // 在这里放置你想要执行的代码
    var pauseButton = document.querySelectorAll('.bpx-player-video-area .bpx-player-state-wrap')[0];
    if (pauseButton) {
        pauseButton.hidden = !pauseButton.hidden;
    }
})();