Skip to content

Instantly share code, notes, and snippets.

@oscarmarina
Created May 29, 2023 21:16
Show Gist options
  • Save oscarmarina/8e0d148acbd4507d7aec15f8929c5adc to your computer and use it in GitHub Desktop.
Save oscarmarina/8e0d148acbd4507d7aec15f8929c5adc to your computer and use it in GitHub Desktop.
Bookmark - Toggle the YouTube Bar/Controls
javascript: (function () {
var style = document.querySelector('#toggle-ytp');
if (style) {
style.remove();
} else {
var selector = '.ytp-chrome-top,.ytp-chrome-bottom';
style = document.createElement('style');
style.id = 'toggle-ytp';
style.textContent = selector + '{display:none;}';
document.head.appendChild(style);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment