// ==UserScript==
// @name          Tom loves Swirlee
// @namespace     http://swirlee.org/
// @description   Adds a "del.icio.us archive" link to Swirlee
// @include       http://*.swirlee.org/*
// @include       http://swirlee.org/*
// ==/UserScript==
( function() {
  var li = document.createElement('li')
  var a = document.createElement('a')

  a.href = 'http://del.icio.us/interruptorjones/swirlee'
  a.appendChild(document.createTextNode('del.icio.us archive'))
  li.appendChild(a)
  document.getElementById('links').appendChild(li)
} )()

