Skip to content

Instantly share code, notes, and snippets.

@TrevTV
Created August 6, 2023 04:09
Show Gist options
  • Save TrevTV/716f7c01c3777b4caeae21dca23cb1b1 to your computer and use it in GitHub Desktop.
Save TrevTV/716f7c01c3777b4caeae21dca23cb1b1 to your computer and use it in GitHub Desktop.
JavaScript bookmark that toggles the YouTube playback bar
javascript:(()=>{var bottomElement=document.getElementsByClassName("ytp-chrome-bottom")[0];var currentStyle=bottomElement.getAttribute("style");if(currentStyle.includes("display: none;")){bottomElement.setAttribute("style",currentStyle.replace("display: none;","display: block;"))}else{bottomElement.setAttribute("style",currentStyle+"display: none;")}})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment