// ==UserScript== // @name music.youtube.com // @description This skips the warning "The following content may contain suicide or self-harm topics." on music.youtube.com // @namespace Bowud Scripts // @match https://music.youtube.com/watch* // @downloadURL https://git.bowu.dev/bowu/UserScriptsPublic/raw/branch/main/build/youtube/music/warning-proceed.min.user.js // @version 1722697632361 // ==/UserScript== "use strict";setInterval((function(){var e=document.querySelector("#error-screen");console.log({errorScreenEl:e});var o=e.querySelector("#reason");if(console.log({reasonEl:o}),"The following content may contain suicide or self-harm topics."===o.textContent){var r=e.querySelector('button[aria-label="I understand and wish to proceed"]');console.log({buttonEl:r}),r&&r.click()}}),100);