I have tweaked the Digg This! extension code a little so that it now works: highlight some text on a page you want to submit, use the Pligg This toolbar button or context-menu entry and a new tab will open, url, title AND summary all populated for you.
Add the following to the bottom of the digg() function in the Digg This! extension
Code:
var contentArea = document.getElementById('content');
contentArea.addEventListener('load', addsummary, true);
}
function addsummary(){
var body = window.content.document.getElementById('bodytext');
body.value = notes;
var contentArea = document.getElementById('content');
contentArea.removeEventListener('load',addsummary,true);
}
Code:
var notes ='';
function digg(){
.....
var selectedObj = getSelectedText();
if ( selectedObj)
{
notes = selectedObj;
}
.........
}
Cheers, T.




Linear Mode

