You can try that. Unfortunately, none of the zip files were able to be archived. Downloadthemall works better if you're using Firefox anyway.
Name:
Ren2009-11-28 16:52
Google for 'not4chan-1.14.xpi'.. that one works with the current Firefox.
Note: it will only give a save option in a page with a single thread, and only in the right click menu.
Name:
Anonymous2009-12-21 18:23
It doesn't work on 4chan anymore? When I tried in not4chan it showed up in the right click menu. But in 4chan it doesn't show anymore. Any known fix for this? I'm using Firefox 3.5.6 btw.
Name:
Anonymous2009-12-21 23:43
>>61
Doesn't seem to be working on the boards.4chan.org ones.
Anyone know how to add it to the extension so it works on those boards?
Name:
Anonymous2009-12-22 0:18
It's because moot decided to be a faggot and move the zip and img boards to the same server.
Now things like the 4chan extension, not4changrab, other 4chan extensions have all been made useless on the former zip boardd.
Name:
Ren2009-12-22 6:14
I updated the not4changrab addon to work with 4chan again.
I don't know, all I can say is "It works for me" (TM).
As long as the URL ends in a number it should appear in your right click menu.
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
Name:
Anonymous2009-12-22 18:06
Could someone also add to the option of not4chan to download the pictures with the name the board show it as?
The menu doesnt display on right-click. I tried hacking the previous version to add an combo box for the download folder etc, but could never figure out how to add which URLS activated it. Any help would be greatly appreciated.
as a temporary fix. I also got tired of having to click the Folder button to change save locations, so I changed it to an edit box. It will work both ways but if anyone would like that feature in the dialog.js file, replace the n4cGetDir function with this.
function n4cGetDir() {
var label = document.getElementById("n4cFolder");
var value = document.getElementById("n4cFolder").value;
label.setAttribute("value", value);
return value;
}
Again, its ugly but it works. Thanks for your help.
Name:
Josh2009-12-23 21:11
Sorry, also forgot about the dialog.xul file where I replaced
<hbox>
<label value="Save To Folder:"/>
<label id="n4cFolder" value="" persist="value"/>
</hbox>
with
<vbox>
<label value="Save To Folder:"/>
<textbox id="n4cFolder" value="" persist="value"/>
</vbox>
Name:
Anonymous2009-12-24 12:28
Josh can you upload your not4chan version? I would like to try yours.
The modifications from Rens latest build are as follows:
• Changed all names to 4chan Grab instead of not4chan
• Updated to work with boards.4chan.org & Firefox 3.6 betas
• Changed the directory label to a textbox, so you can type in the save path
If it doesnt automatically install, you'll have to download it and then drag it into your firefox window. Im not trying to take over this project, just offering up suggestions that I personally found useful. Let me know if theres any problems or suggestions and thanks to Ren for the help.