// ==UserScript==
// @name           Helvetipaper
// @namespace      http://flashfonic.de
// @description    A skin for the Instapaper 'unread' page by www.flashfonic.de
// @include        http://instapaper.com/u
// @include        http://www.instapaper.com/u
// @include        https://instapaper.com/u
// @include        https://www.instapaper.com/u
// ==/UserScript==

var cssfile = "http://www.flashfonic.de/helvetipaper.css";

var cssNode = document.createElement('link');
cssNode.type = 'text/css';
cssNode.rel = 'stylesheet';
cssNode.href = cssfile;
cssNode.media = 'screen';
cssNode.title = 'dynamicLoadedSheet';
document.getElementsByTagName("head")[0].appendChild(cssNode);
