🏠 Home 

消除哔哩哔哩暂停按钮

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


Install this script?
  1. "use strict";
  2. // ==UserScript==
  3. // @name 消除哔哩哔哩暂停按钮
  4. // @namespace https://github.com/
  5. // @version 2023.12.28
  6. // @description 消除哔哩哔哩暂停按钮,方便截图
  7. // @author 作者名
  8. // @match *://www.bilibili.com/video/*
  9. // @match *://www.bilibili.com/festival/*
  10. // @match *://www.bilibili.com/bangumi/play/*
  11. // @match *://www.bilibili.com/cheese/play/*
  12. // @grant unsafeWindow
  13. // ==/UserScript==
  14. (function() {
  15. 'use strict';
  16. // 在这里放置你想要执行的代码
  17. var pauseButton = document.querySelectorAll('.bpx-player-video-area .bpx-player-state-wrap')[0];
  18. if (pauseButton) {
  19. pauseButton.hidden = !pauseButton.hidden;
  20. }
  21. })();