diff --git a/content.js b/content.js index c5d02edd..2134e8c8 100644 --- a/content.js +++ b/content.js @@ -537,7 +537,7 @@ function removePlayerControlsButton() { } function createButton(baseid, title, callback, imageName) { - if (document.getElementById(baseid) != null) return; + if (document.getElementById(baseid+"Button") != null) return; // Button HTML let newButton = document.createElement("button"); newButton.id = baseid+"Button";