Diskussionen » Entwicklungsanfragen

script request to disable youtube "next" button?

§
Veröffentlicht: 02.07.2018
Bearbeitet: 02.07.2018

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.


§
Veröffentlicht: 03.07.2018
Bearbeitet: 14.07.2018
  • 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}`;
    

Antwort schreiben

Anmelden um eine Antwort zu senden.

长期地址
遇到问题?请前往 GitHub 提 Issues。