Greasy Fork is available in English.

討論 » 建立請求

script request to disable youtube "next" button?

§
發表於:2018-07-02
編輯:2018-07-02

script request to disable youtube "next" button?

Its easy to accidentally click it and it's annoying would like to be rid of it pls.


§
發表於:2018-07-03
編輯:2018-07-14
  • You may install uBlock Origin and using it's element picker hide this button.

  • Or add this rule to uBlock's My filters list:

    www.youtube.com##.ytp-button.ytp-next-button
    
  • If you wanna install script, you may use this:

    // ==UserScript==
    // @name         Hide "Next" button
    // @namespace    hiding
    // @version      0.0.0.0
    // @author       AHOHNMYC
    // @match        https://www.youtube.com/*
    // @grant        none
    // ==/UserScript==
    document.head.appendChild(document.createElement`style`).textContent = `
    .ytp-button.ytp-next-button
    {display: none !important}`;
    

發表回覆

登入以回復