what's the url for the not4chan grab firefox extension? the one that grabs all the images in a thread
Name:
AcIdrain2009-12-22 13:50
Ren: Can you add this code to your not4changrab?
menu.js line 66:
else if(node.className == "filename") {
title = node.innerHTML;
}
(Add following after above lines):
// Check for Serissa 1.x (serissa.org) based imageboards (IE. sectachan.org or notfourchan.net)
// The following code will get the filename uploaded after the 3rd comma, after the filesize and image res.
// Format: -(Size, Image Res, Filename)
// Added by AcIdrain
if (node.nodeType == 3 && /^-\((.*), (.*), (.*)\)/.test(node.nodeValue)) {
var matched = node.nodeValue.match(/^-\((.*), (.*), (.*)\)/);
if (typeof(matched) == 'object' && matched.length==4) {
if (matched[3] != "") {
title = matched[3];
}
}
}
I'd rather not have to do it manually every update... Thanks