Greasy Fork is available in English.

s Disable YouTube Channel / User Home Page Video AutoPlay 2024 May

Disable the video autoplay at YouTube channel/user home page

// ==UserScript==
// @name         s Disable YouTube Channel / User Home Page Video AutoPlay 2024 May
// @namespace    DisableYouTubeChannelUserHomePageVideoAutoPlayFork
// @version      3
// @description  Disable the video autoplay at YouTube channel/user home page
// @match        *://*.youtube.com/*
// @grant        none
// @run-at       document-start
// @icon         https://www.google.com/s2/favicons?sz=64&domain=youtube.com
// @license      Public domain
// ==/UserScript==

(() => {
  console.log(`${GM.info.script.name} run`)
  var u
  var r=_=>{
    var v=document.location.href.match(/:\/\/[^\/]+\/(((c(hannel)?|u(ser)?)\/)|@)[^\/]+(\/(about|featured)?)?(\?|$)/)
    if(u!==v){
      u=v
      ;[...document.querySelectorAll(`video`)].map(x=>{
        x.pause()
        x.volume=0
        debugger
      })
    }
    setTimeout(r,500)
  }
  r()
})();