I didn't receive anything from github, gonna check why I didn't get an email alert.
I created an issue on your btpp repository on GitHub. Normally, Github sends you an email if that happens.
The thread ignore function isn't working on firefox anymore.
Also the rating feature isnt showing all the time.
I can't register for the rating feature too.
1. Didn't test that.
2. Rating feature always works for me.
3. You need to setup a password, checkout the "Get password" link in BT++ Settings.
JackJack, I added a new feature to your script. Now I am able to view the PM's in my outbox as well. I added/changed the following code snippets (the first one changes the BT++ Settings page):
<a href="https://bitcointalk.org/privatemessages.php">List of PMs in your Inbox</a><br />\
<a href="https://bitcointalk.org/privatemessagesoutbox.php">List of PMs in your Outbox</a><br />\
if(document.location.href.split('/privatemessagesoutbox.ph').length>1){
body.innerHTML='';
getPage('https://bitcointalk.org/index.php?action=pm;f=outbox', callbackPMOutbox, 0);
return;
}
function callbackPMOutbox(r){
var reg = new RegExp('f=outbox;start=([0-9]{0,10})" method=');
maxpagePM = reg.exec(r.responseText)[1];
body.innerHTML=BTCSS+'Downloading PMs';
getPage('https://bitcointalk.org/index.php?action=pm;f=outbox;sort=date;start=0', function(r){concatPMOutbox(r,0,maxpagePM,callbackPMEnd);}, 0);
}
function concatPMOutbox(r,i,max,c){
var resp = r.responseText;
result = regexpPMS.exec(resp);
body.innerHTML=BTCSS+BTPPtitle+'<a href="https://bitcointalk.org">Bitcoin Forum</a> > All your PMs\
<br /><br />Downloading PMs: '+i+'/'+max;
while(result != null){
PMfaits+=1;
listPM+='<tr><td'+result[1]+'</table>\n\t\t</td></tr>';
result = regexpPMS.exec(resp);
}
if(i<maxpagePM){
var pmpage='https://bitcointalk.org/index.php?action=pm;f=outbox;sort=date;start='+String(i+20);
getPage(pmpage, function(r){concatPMOutbox(r,i+20,maxpagePM,c);}, 0);
}else{
c();
}
}
Could you add/change that in the script as well? Having both options is nice
