Skip to content

Instantly share code, notes, and snippets.

@rctay
Created May 31, 2012 11:06
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 rctay/2842686 to your computer and use it in GitHub Desktop.
Save rctay/2842686 to your computer and use it in GitHub Desktop.
[userscript] Google Reader script to hide big fat header
// ==UserScript==
// @name Google Reader no header
// @namespace https://gist.github.com/rctay
// @description Hides header
// @include http://www.google.com/reader/view/*
// @include https://www.google.com/reader/view/*
// @include http://www.google.*/reader/view/*
// @include https://www.google.*/reader/view/*
// @version 1.0
// ==/UserScript==
document.querySelector("#gb").style.display = "none";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment