Skip to content

Instantly share code, notes, and snippets.

@CairX
Last active December 26, 2019 07:27
Show Gist options
  • Save CairX/d11395d09fbce8ae623c to your computer and use it in GitHub Desktop.
Save CairX/d11395d09fbce8ae623c to your computer and use it in GitHub Desktop.
YouTube: Disable the sticky ability of the search bar.
// ==UserScript==
// @name YouTube: Relative Header
// @namespace https://gist.github.com/CairX
// @description Disable the sticky ability of the YouTube search bar.
// @include https://www.youtube.com/*
// @version 0.1
// @grant none
// @noframes
// ==/UserScript==
var positioner = document.getElementById("masthead-positioner");
positioner.style.position = "relative";
var spacer = document.getElementById("masthead-positioner-height-offset");
spacer.style.display = "none";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment