I had to change the selector for the subscribe button, otherwise the script would not work:
var subscribeButton = document.querySelector("#subscribe-button paper-button");subscribeButton.style.display = "initial";subscribeButton.style.width = "170px";
My YouTube is displayed in German, maybe there are language specific differences?
Wrong button selector
I had to change the selector for the subscribe button, otherwise the script would not work:
var subscribeButton = document.querySelector("#subscribe-button paper-button");
subscribeButton.style.display = "initial";
subscribeButton.style.width = "170px";
My YouTube is displayed in German, maybe there are language specific differences?