YouTubeRedux icon indicating copy to clipboard operation
YouTubeRedux copied to clipboard

subscribe button broken by new yt-smartimation element

Open TorutheRedFox opened this issue 2 years ago • 1 comments

TorutheRedFox avatar May 04 '23 20:05 TorutheRedFox

quick fix:

setInterval(function() {
    var newParent = document.getElementsByTagName("ytd-subscribe-button-renderer")[0];
    var oldParent = newParent.getElementsByTagName("yt-smartimation")[0];

    while (oldParent.childNodes.length > 0) {
        newParent.appendChild(oldParent.childNodes[0]);
    }
}, 100);

TorutheRedFox avatar May 05 '23 09:05 TorutheRedFox