Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created December 5, 2008 03:35
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 jugyo/32223 to your computer and use it in GitHub Desktop.
Save jugyo/32223 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name eee_google_reader
// @description Google Reader for eeePC
// @include https://*.google.com/reader/view/*
// @include http://*.google.com/reader/view/*
// @include htt*://*.google.*/reader/view*
// @author jugyo (http://jugyo.org/)
// ==/UserScript==
var myStyle = document.createElement('style');
myStyle.type = 'text/css';
myStyle.innerHTML = '#main {z-index: 300; top: 0px; background-color: white;}';
document.getElementsByTagName("head")[0].appendChild(myStyle);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment