Skip to content

Instantly share code, notes, and snippets.

@astanin
Created September 17, 2012 12:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save astanin/3737059 to your computer and use it in GitHub Desktop.
Save astanin/3737059 to your computer and use it in GitHub Desktop.
Hide Search Bar in Google Reader (GreaseMonkey script)
// ==UserScript==
// @name Hide Search Bar in Google Reader
// @namespace https://github.com/astanin
// @include http://www.google.com/reader/view/*
// @include https://www.google.com/reader/view/*
// @version 1.0
// @grant none
// ==/UserScript==
function hideById(barid) {
document.getElementById(barid).style.display = "none";
}
hideById("gb");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment