Greasy Fork is available in English.

消除哔哩哔哩暂停按钮

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

질문, 리뷰하거나, 이 스크립트를 신고하세요.
"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;
    }
})();