YouTube - prev and next buttons remover

remove prev and next buttons

目前为 2022-07-24 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name YouTube - prev and next buttons remover
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description remove prev and next buttons
  6. // @author You
  7. // @match https://www.youtube.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=youtube.com
  9. // @grant none
  10. // @license GPL
  11. // ==/UserScript==
  12.  
  13. (() => {
  14. 'use strict';
  15. [
  16. '.ytp-prev-button',
  17. '.ytp-next-button'
  18. ].map(v => document.querySelectorAll(v)).forEach(v => v?.forEach(v => {
  19. v.hidden = true;
  20. }));
  21. })();