Intense Debate Notify by Email

By Aaron B. Hockley Last update Jan 30, 2009 — Installed 26 times. Daily Installs: 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0

There are 2 previous versions of this script.

// ==UserScript==
// @name          Intense Debate Notify by Email
// @namespace     http://aaronhockley.com
// @description   Selects the "Notify me of follow-up comments via email" checkbox on IntenseDebate-powered blog comment sites.
// @include       *
// @exclude	      */wp-admin/*
// ==/UserScript==
function findcheckbox(iden)
{
	return document.getElementById(iden);
}

findcheckbox('IDSubscribeToThis').checked = true;