Pownce public notes link

By Aaron Bassett Last update Jan 22, 2008 — Installed 67 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0
// ==UserScript==
// @name           Pownce public notes link
// @namespace      http://3makestuff.com
// @description    Adds a link to the public notes in the main header
// @include        *pownce.com*
// ==/UserScript==


if(document.getElementById('nav-primary')) {
	var a=document.createElement("a");
	a.href='/public_notes/';
	a.title="view public notes";
	var t=document.createTextNode("public");
	a.appendChild(t);
	document.getElementById('nav-primary').appendChild(a);
}