// ==UserScript==
// @name           DeliciousAutoPrivates
// @namespace      http://www.cs.stevens.edu/~dlong/
// @description    Makes bookmark submissions into private by default.
// @include        http://del.icio.us/*
// ==/UserScript==

// Version 1.
//   A very simple privacy feature.

(function() {
  var page = null;
  var private = document.getElementById( "private" );
  private.checked = true;
})();
