i use downThemAll myself but i've heard good things about this one.
Name:
Anonymous2006-07-15 22:02
not4chan grab would be much more successful if it was named 4chan grab. A lot of people don't want to be assosciated with not4chan. Otherwise its a good plugin
Name:
Anonymous2006-07-16 3:16
People who choose not to use an extension just because of it's name are too stupid to use it anyway.
Name:
Anonymous2006-07-16 11:19
>>4
Besidesthose retards who don't want to assosciate with not4chan don't deserve good plugins.
Name:
Anonymous2006-07-23 2:01
It's kind of slow for me. Only downloads one image at once. And only works on 4chan and not4chan. It's not a -bad- extension, DTA is just better.
Name:
Anonymous2006-07-23 15:08
wget ftw!
Name:
Anonymous2006-07-23 20:40
The point of not4chan grab is to grab images of the posted filename, and not the automaticly generated board filename. IE, I post a file with the filename "house.jpg" with wget/DTA/save-as u would get XXXXXXXXXXXX.jpg. If you use not4chan grab, you will get "house.jpg".
Name:
Anonymous2006-07-23 21:54
Speaking of not4chan, not4chan is 404ing for me... anyone else have the same issue?
Name:
Anonymous2006-07-24 0:33
I can't access not4chan either. Hope it didn't get party-vanned.
Name:
Anonymous2006-07-24 1:27
>>8
This is a double edge sword though. Some people may prefer descriptive filenames, but I prefer downloading data that I don't have to rename because people plain suck at naming conventions.
It's been a long time since I've used it so it might have changed; but until it auto-increments filenames and downloads more than one file at a time, I'll stick with DTA.
Name:
Anonymous2006-07-24 4:51
ahhh not4chan nooooooo
Name:
Kori2006-07-24 11:57
It's sad that I ALREADY miss it... D:
Name:
Anonymous2006-07-24 13:26
It's not like first time it's down. Saber's messing with something again.
Name:
Anonymous2006-07-25 5:07
>>11
I only use it when I download doujinshi's or manga. I have a bash imagearchiver that does the job for me, so for regular images I mostly ignore it. =]
Name:
Anonymous2006-07-25 13:04
15: You're such a damn liar.
Name:
Anonymous2006-07-26 23:42
Any more word on when it might come back or if it is?
Hi Charlie and the family
Anonymous is the same asshat that trolls http://www.midnitecrowproductions.com/petlovers
He's a good frieind of DogZoo and maurice.
He claims most stuff posted is copyrighted by him.
I am the DogZoo of PLF. I was cited by you. my English is not very good. By that done not stay clear for me. You say that I am a friend of some troll?? Who would be this troll?? I ask that road answer myself email> dogzoo@bol.com.br
How do I contacted the guys behind not4chan grab? I didn't see any contact info on the rtmanga page.
I just updated to FF 2.0, and so I had to update n4c grab to. I finally discovered that the latest version of n4c grab is what's responsible for clearing the Comment field's data whenever I hit back to see what I've just posted (i.e. in the invent of a MySQL error). For some reason it resets the field when the page loads, completely obliterating everything I've just typed, and this makes me want to hit someone in the head with a lead pipe repeatedly.
Also, I hate that stupid 'sage' checkbox, and there really needs to be a way to turn it off. Real men TYPE their sages; pounding those four keys is half the reason to do it. Plus the styling on it is screwy.
I have 3.0 4chan grab................ I just edited the files and fix...............
1.Open WinRAR file
2.Extract .xpi file
2.Open .xpi file in WinRAR
3.Extract "install.rdf"
3.Open "install.rdf" in notepad
4.Edit <em:maxVersion>2.0.*</em:maxVersion> to <em:maxVersion>3.0.*</em:maxVersion>
5.Save file
6.Place new file into .xpi file and overwrite old file
7.??????
8.Profit
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.
Name:
Anonymous2009-12-25 3:05
Can you also add an option to save the images with the names the board has generated it. Otherwise it working's great!
Name:
Anonymous2009-12-25 15:56
I am unable to get Ren's addon to work.
I'm on FF 3.5.6 and the option will not appear.
Name:
Anonymous2009-12-25 21:40
the guy who posted his version. it doesn't work.
Name:
Anonymous2009-12-26 0:19
hey ren, your version of the add-on doesn't seem to work if you've got a post number in the url
Name:
AcIdrain2009-12-26 15:34
Josh: Your version is conflicting with the other 4chan extension (See http://www.4chan.org/tools/) ... You should rename your chrome:name to "4chanGrab" or "4chanExtension". As soon as I enable both extensions yours disables the old one and starts screwing w/ the browser. Please Fix!
Name:
Josh2009-12-26 16:14
Ok, I changed the name to 4chanGrab to hopefully avoid any extension conflict.
>>86
Thanks for this. Apparently this thread came back to life right before I made a couple of threads on /g/ and needlessly edited my own version. Yours is far better.
I think the one thing left that has always bothered me is the lame renumbering. "grabxxxx" easily defeats itself. I haven't looked at the code close enough to see if there's a trivial way to do something more elegant.
Name:
Josh2009-12-28 15:45
>>88
Im working on this. Currently Im trying to make it ask for a prefix each time its pressed. If you can think of a better way let me know.
But I think having an option to save with the name the board renumbered it to would be a good idea in this instance.
Name:
Anonymous2009-12-28 17:19
it's called not4chan grab, why are you hijacking it and changing the name?
unless you make a new app from scratch you have no right to change the name. fixing errors in the code is one thing, renaming the whole app is another.
Name:
Anonymous2009-12-28 19:26
>>91
Well not4chan doesn't exist as a Website any more so I don't see a problem. Maybe "Josh" should create a new Website and give the newly redeveloped app a new homepage. And perhaps he can give credit to the original development from there.
Name:
Anonymous2009-12-28 19:29
>>92 Well not4chan doesn't exist as a Website any more
Actually wait, never mind it does, but not under the original owners anymore. The author of not4chan grab has abandoned the project though, it seems.
Name:
Anonymous2009-12-28 20:36
While im thankful for the update, i kinda agree on keeping its old name.
Name:
Anonymous2009-12-29 0:39
As long as this awesome tool is kept working I don't care what it's called.
Thanks for the fix.
Name:
Josh2009-12-29 2:41
>>91
Im not trying to hijack this project or steal credit at all. The original maintainer hasnt updated this in ages, and I
updated my personal version to make it work with the newly formatted boards since the previous extension quit working.
Personally, Ive never even been to not4chan and doubt the majority of people using this extension have. If people using the "not4chan Grab" extension upgraded to mine based solely on the version number, they may not like some of my modifications. Changing the name was a personal preference since I only use 4chan, but also a way to differentiate between a "bugfix" for the previous version, and my own changes which may be drastically different.
I have not changed any other references or credit in the files and do not plan to take over this project. I only uploaded it because someone asked and I thought it would be helpful to others since Ren's version wasnt working for me. If the name change is that big of a deal I will change the name back for releases or stop uploading. I was only trying to help and Im sorry for creating an issue.
• Added option to change the file prefix when renumbering
Name:
Anonymous2009-12-29 4:25
>>96
Since the original maintainer obviously has given up on the project, you should take over. Perhaps you can create a new homepage for it and promote it? That would be nice. I'm sure there would be many 4channers who would love to use this app.
• Changed the textbox to a editable menulist to keep track of your previous 12 save locations w/ sorting
>>100
I liked your ideas on the timestamp and suffix's to the original filenames. I have it all coded up but I need to finish working out the layout in the xul for this many options.
Im also converting it so the actual filelist is editable. So in addition to being able to batch rename, add timestamps, or prefix/suffixs, you'll be able to edit the individual filenames before saving. I thought that gave a large enough variety to make everyone happy, but if anyone has any other ideas let me know.
I am not a programmer and have never used javascript before, so if there are any bugs in this version just let me know. I tested it thoroughly but the saving/sorting of the menulist was a PITA and its very dirty. I set it to remember 12 save locations, but let me know if you would like more/less. Ill also try to get some preferences for this but thats a whole other challenge.
I will change the name back for the next release to appease everyone and sorry I didnt get to it this release. Let me know what else it needs and enjoy!
Name:
Anonymous2010-01-02 6:43
Ever thought of adding this to the Firefox list of add ons?
Can you add more imageboards for support, like the original www.2chan.net ?
Or the German knockoff of 4chan? (krautchan.net)
etc.
Name:
Josh2010-01-02 15:40
>>103
Yes, it should be really easy and Ill try to add those in. If theres any others just let me know and Ill try to incorporate them.
Name:
Anonymous2010-01-03 0:09
4chanGrab-1.17.xpi doesn't work with FF 2.0.0.20
Any other options for saving all images with the original file names?
Thx for you work on this
Name:
Anonimus2010-01-03 0:38
Would you be a dear and strip
question marks from filenames?
The grabber gets stuck on those
while windows silently refuses
illegal chars. I blame Macs.
Thanks!
>>88 again, might as well put a random name on here if I'm going to reply again.
Thanks for considering the suggestions and even bothering with this stuff. I hadn't thought of an editable file list. If it works well enough then it seems to me simply number suffixing the original filenames would suffice. I only suggested the timestamp names because it's a simple way to uniquely number them, but just the ability to edit any failed ones would resolve conflicts.
I'd say don't get too crazy with feature creep and trying to add something for everybody, but I'm not the one doing the work, heh. I know it's all still relatively small and simple code.
Also, I wouldn't sweat the name thing so much, though it's reasonable to change it back. With the stuff you're adding I'd almost consider it a fork at this point (that's not a bad thing).
Name:
Anonymous2010-01-04 14:53
I was wondering if you could make it watch a thread and download the new pics as they get posted? like a "Watch" button along with the other ones?
Name:
Josh2010-01-04 15:14
>>108
This is actually what Ive been working on since yesterday.
Hopefully it will be done by tomorrow and Ill upload it along with the fix for the windows filenames.
>>106
The Macs blame you right back.
For your hate crimes.
But yes, this has always bugged me in Windows. I'd prefer that illegal chars only be changed if the current OS doesn't support those chars, though. Just because Windows chokes doesn't mean you neuter everyone else.
Name:
Anonymous2010-01-05 11:07
U don-t need any extension just download downthemall and it works in any page.
Name:
Anonymous2010-01-05 16:28
>>112
The whole point of this extension is to retain the original filenames.
Josh, awesome of you to pick up this project and run with it. Bloody good form.
Any updates since your last post?
Name:
Josh2010-02-02 2:50
I basically started a total rewrite to add in auto-updating threads & auto-rename features.
The new version has 1 window with expandable threads in a list instead of the previous 1 window per thread. I added in several auto-renaming options for files when you add a thread, so you can add a prefix/suffix to all filenames or add timestamps/numbering/custom to only dupes. The UI is all done and everything works with the exception of the actual image download code.
Once I get all the code working Ill release the completed new version with all the bells and whistles and the current version with an auto-update feature for the people who are nostalgic.
A couple of other projects popped up lately so its been busy, but Im hoping to have everything done & released in a couple of weeks. There was also Chrome version in the works but the file access restrictions are much different for chrome than firefox.
Name:
Anonymous2010-02-02 22:15
>>118
Incredible effort, much appreciated! Great idea to update the old interface too, since I'm a keyboard person and I'm really used to the old version.
Any plans to address question marks in names hanging the extension in Windows, as described in >>106 and >>111? OS X and other OSes don't have this problem (so probably no need to strip characters there), but in Windows, being able to replace them would be very useful.
Name:
Josh2010-02-02 22:41
>>119
Thanks for reminding me! I had totally forgotten about that issue and Ill work on getting a fix for it tonight.
btw is there any way to selectively delete the recent save paths? i don't know where those locations are stored, so i could edit it manually.
Name:
Anonymous2010-02-09 3:00
would be nice if this worked on 4chanarchive
Name:
Anonymous2010-02-09 6:02
first off, josh this thing is awesome and i love you for putting in the effort to maintain and improve this sweet tool. but I'm having a weird problem with it, the 4chan grab shows on the right click menu and the chooser shows up fine but when i click save the options go grayed out as normal but it doesn't download anything and just sits there till i close it. i was thinking my isp was blocking the img.4chan server or something but i can download the images fine by right click- save as so I'm kinda at a loss at what the problem is. any suggestions would be help full, thanks
-anonymous
Name:
Anonymous2010-02-09 6:27
>>126 here, just figured it out, it was windows 7 being strict about where i could have write access in certain folders XD.
anyway awesome job again josh.
Name:
Anonymous2010-02-11 2:25
Thanks for remaking the addon. I was so pissed when not4chan grab wasn't supported anymore. Glad I got sick enough of download them all and googled this.
Name:
Anonymous2010-02-13 7:52
Hey, for some reason, Josh's addon conflicts with the 4chan sauce greasemonkey script where it has links to tineye, iqdb, and saucenao next to each image. The grabber ends up downloading the webpage of the tineye search and saves it as an image file so it shows up corrupt.
I just easily get around this by disabling greasemonkey using the icon on the status bar and refreshing the page.
Name:
Josh2010-02-13 21:42
>>129
I use the 4chan sauce script to and haven't seen any conflicts. Move it to the top of your 4chan scripts to see if that helps.
Sorry its taken so long to get this update out. I got swamped with some consulting projects but I finally have some free time to finish this over the weekend.
Ive added 4chanarchive support, fixed the windows filename bug, added the option to remember your previous window location, and am working on the auto-update part tonight. If you have any other suggestions let me know because this might be my last update for awhile.
Name:
Anonymous2010-02-15 8:32
>>130
Hey Josh, I have one suggestion and two more very minor ones. I'm using Windows.
Could there be a way to clear the recent folders? As of right now, it's possible to paste or type arbitrary text into the editable menulist and I'm presuming that it stays there until pushed out. But I always save to one or two folders only, so things like that could potentially remain visible there forever.
Also, could you please make it so hitting escape closes the window?
Finally, is it possible to select more than one list item at a time by keyboard or mouse? The old version doesn't do that, but I guess it's not that important since the toggle button makes things a little easier already.
Thanks a ton for even picking up this project.
Name:
Anonymous2010-02-15 15:17
Josh is it possible to make an option so that you can change where each picture is saved to? Instead of having to open a new not4chan window you can just change the saving destination for each picture.
Also I'm using windows 7 and each time I open the extension I need to expand the the folder list, not sure if it's because of win 7 or the extension. But can you make it so that it opens the whole folder tree structure by 1 folder deepness?
Name:
Irrelevant2010-02-16 9:17
Thanks Josh, I thought the grabber was dead. Much appreciated!
ALLRIGHT! Sorry for the delay in this release. I kind of got stuck between the new complete re-write and the old code. The next release will be 2.0 and is a complete rewrite from the ground up. This will have support for auto-update, customizable key commands, compatibility with 4chan sauce, the ability to add any new site easily, and complete control over renaming individual files or every file automatically and their save locations. Im about 85% done with everything and just need to work out the bugs so it should be released in the next few weeks.
With that out of the way, heres the changes for this release:
started complete re-code
Fixed Windows filename bug that would freeze on illegal characters
Added option to remove all save location history
Added support for 4chanarchive.org
Added a Preference window with options for:
+ Auto Close Window After Completion
+ Replace Illegal Windows Characters
+ Hiding Alerts on Completion (avoids getting stuck in an alert loop when choosing a file to upload)
+ Number of Recent Paths to Remember
+ Ghetto Recent Path Editor
Sorry for the crappy path history editor, I have a proper one but I removed all the 2.0 code just to get this release out tonight so its a mess. If theres any bugs please let me know so I can update the installer for everyone else.
------
>>129
You were right and I had modified my script. This will be fixed in the next release.
>>132
>Also I'm using windows 7 and each time I open the extension I need to expand the the folder list, not sure if it's because of win 7 or the extension.
I think I know what your talking about but could you please expand on that issue?
Name:
Anonymous2010-02-18 14:00
wewt
Just a few things I'm noticing in Windows XP:
- High system DPI settings (133 in my case) mean the default window size is too small, buttons are half obscured, Cancel is not visible at all.
- Window has no maximize/minimize widgets or resize ability (dragging cursor to window edge doesn't allow resize) to work around above problem. Maximize used to show in window menu (right-click in title bar) when I tabbed over to Cancel and hit space, but after closing window with Alt-F4, it no longer shows up.
- Prefs window has a string of strange characters visible on the right side that follows wherever you click
- URL in About window points to .com.com address
I haven't encountered any illegal characters to test that functionality yet.
Name:
Josh2010-02-18 19:46
>>136
Sorry about that, my brain was mush last night and I left 2 different sets of code and edited the wrong one. This should fix the window resize issue and add the minimize/maximize buttons. Even if its too small to start it will remember the size you resize it to.
>>137
Thanks for the quick update. I can resize this one, but I still have no maximize/minimize buttons, and maximize is still not available in the window menu.
Do you think it might help for me to delete the prefs file manually? Where is it located? I've already tried uninstalling the old 1.8 extension before adding the new version, but the old prefs were still in effect.
Name:
Anonymous2010-02-19 4:47
>>137
Thanks for the quick update. I can resize this one, but I still have no maximize/minimize buttons, and maximize is still not available in the window menu.
Do you think it might help for me to delete the prefs file manually? Where is it located? I've already tried uninstalling the old 1.8 extension before adding the new version, but all my old settings were still in effect.
Name:
Anonymous2010-02-19 4:47
ack, double post
Name:
Anonymous2010-02-20 15:00
>>132
>Also I'm using windows 7 and each time I open the extension I need to expand the the folder list, not sure if it's because of win 7 or the extension.
>I think I know what your talking about but could you please expand on that issue?
Every time I open a not4chan window and click on folder it shows only the one folder I recently saved the pics too. I have to click the little arrow next to the folder to expand the whole folder structure.
Name:
Anonymous2010-02-24 18:38
get FLASHGOT and DOWNTHEMALL
and you'll be all set
Name:
Anonymous2010-02-28 9:04
>>142
You'll be all set to lose original filenames, bro.
Name:
Anonymous2010-03-02 17:28
Is there any way we can edit this ourselves for different image boards?
Name:
Josh2010-03-03 23:21
>>144
You can change the .jar file to a .zip and edit the contents yourself, but the next release will have a panel in the preferences to add your own sites.
If you have any you specifically want added, list them here and Ill try to add them.
Name:
Anonymous2010-03-05 20:28
I'm not sure I'm savvy enough to do that. I might try it eventually.
Although how would the preferences work? I would have thought you needed different code for different sites.
Also thanks for this by the way.
Name:
JCrew!6oYg7TwLO.2010-03-05 20:44
yea
Name:
YUSH!!ZcKCSWt0my6i9CG2010-03-06 4:29
yup
Name:
Anonymous2010-03-07 20:50
josh could you upload a version that does not fight with the 4chan menu extension Firefox thinks they are the same file and the actually fight.
Name:
topsy2010-03-12 22:29
New extension works with firefox 3.6 ???
Name:
Anonymous2010-03-18 10:28
Yes. I am using it just fine now.
Name:
Anonymous2010-03-22 17:25
An interesting change might be to have the downloaded name as (generated number) - (original filename)(extension). That would prevent repeated names, and get you the original filenames at the same time. Easily undone with Ant Renamer or something.
Name:
Anonymous2010-03-24 10:50
>>153
I would like this, but it would probably only be good as an optional setting for the "Renumber" button, not as a setting for default behavior.
Name:
Anonymous2010-03-27 11:41
Jooshed appears to be down. Any idea where I can grab the extension?
>>161
How the fuck do I make this work? I right click in the thread I want to get all the pictures from like I used to do with not4chan grab but I don't see any option to download anything.
Name:
Anonymous2010-04-05 15:21
>>162
Yes, it is legit I downloaded a copy before the link died. It is not modified in any way, I had two copies and hashed them to ensure the file was not corrupted.
>>163
A context item named "4chan Grab" should appear at the bottom of the right click menu. The only thing I can recommend is that you make sure any old versions of the plugin are removed because they can cause conflicts or if that isn't the problem make sure the file downloaded properly. MD5 Hash: 7bd8dadb7c2d59126533f3f8772a6bb9
Name:
Anonymous2010-04-05 17:53
so has that chrome version been released yet or is it still in the works?
Name:
Anonymous2010-04-06 1:46
>>164
Thanks for the tips bro, I uninstalled the not4chan grabber and it works fine now.
Name:
Anonymous2010-04-10 13:24
Thanks John and 161
Name:
Josh2010-04-13 15:11
Sorry about that guys, we migrated servers and I didnt notice it had an error coming back online.
Hey Josh how's it going with the new version? Is it possible for you to also have some kind of function to the grabber that checks if the images downloaded correctly? Kind of like the way DownThemAll have. It's a little irritating to find some of the pics to be incomplete.
Thank you for this article and I hope you have an enjoy day!Find your perfect sofa and other <A href="http://www.sofa-furnitures.com/"> modern home furniture </A>,we <A href="http://www.sofa-furnitures.com/"> Supply furniture </A> fashionable for your stylish.
there are so many different brands of watches,<a href=" http://www.my-own-watches.com/longines-watches-c-351.html">Fossil watches, Rolex watches, omega watches, casio watches and oris watches.</a> Although they are different brands, their common point is the high quality,cheap price,welcome to our website.
1.18 is awesome, Josh! Thanks for fixing the windows filename bug!
Is 2.0 still on track?
Name:
Anonymous2010-07-06 1:50
Can anyone make a Chrome version? yes, I know coding Chrome is a pain in the ass, but I'd really like the not4chan option of naming with original filename on chrome.
Name:
Anonymous2010-07-06 2:29
>>182
make it yourself! great chance to learn programming.
Name:
Anonymous2010-10-15 22:47
>>183
I'd do it, but don't even know where to start at the moment, got any pointers?
Name:
Anonymous2010-12-18 0:00
I'm not getting anything downloaded but broken 4k files now when I try to download images. I think it might have something to do with upgrading Firefox. Any word on an updated version?
Name:
Anonymous2010-12-18 2:58
>>187
here. nevermind, I fixed the problem. there was a conflict with a Greasemonkey userscript.
it looks like 4can grab needs to updated for firefox 4
Name:
Anonymous2011-03-23 11:26
I concur with anon, we need an update for firefox 4
Name:
Anonymous2011-03-23 15:06
∧_∧ / ̄ ̄ ̄ ̄ ̄ ̄ ̄ ̄
( ´∀`) < use a real browser like chrome or opera!
/ | \________
/ .|
/ "⌒ヽ |.イ |
__ | .ノ | || |__
. ノく__つ∪∪ \
_((_________\
 ̄ ̄ヽつ ̄ ̄ ̄ ̄ ̄ ̄ | | ̄
___________| |
Name:
Anonymous2011-03-24 19:59
Please, I need my 4changrab fix, someone make the ff4 version.
Name:
Anonymous2011-03-27 18:26
I must concur with the others asking for the FF4 version.
Had it for so long that now it's just too much trouble to go through and save each image individually.
Damn you for making my life easier!
Name:
Anonymous2011-03-28 21:02
bumpan for ff4 version request.
no not the after years, although it would be great if the new extension got called that.
Name:
Anonymous2011-04-02 0:13
Here's a very old original version from Random Translator, As I never used the "new version" I've seen floating around, this version has worked though every single version of Firefox with no modifications at all. I've changed the maxversion to work with Firefox 4.*
i prefer the newer version for its ability for you to control what it renames the files your getting to. ( so intead of Grab001.jpg or whatever you can have boobs001.jpg, Boobs002.jpg ect) I'm still using firefox 3 so it doesn't effect me but eventually I certainly hope that an anon somewhere will update this extremely useful plug in so it doesn't get left behind.
Name:
Anonymous2011-04-03 22:00
can sombody actually add support for imagesboards such as notfourchan? the automatic filename maker doesn't appear to function when used there which is ironic considering RT made it specificaly so that anon can save all his loli pics quicker.
Name:
Anonymous2011-04-05 22:10
The modified rt version doesn't work on 4chanarchive.org
>>196 >>197 >>199 >>200 >>201 >>203
I don't know how long you guys have been on the internet, but I simply forced the newer version to work on Fx4.0 and it worked. Try Nightly Tester Tools, for srs.
>>205
4chanarchive makes all the pics available in a rar at the top of the page, so you don't even need this add-on.
Name:
Anonymous2011-04-25 10:57
Can someone convert this extension so that it works with Chrome?
pandora bracelets treasured jewelry <a href="http://www.cheap-pandorabracelets.com" target="_blank" title="pandora jewellery"><h1>pandora jewellery</h1></a> is the same as a story e-book. That recommends the taste and also form of the customer, and also turns for you to more costly in case valued kinds deal with anyone along with expensive jewelry along with drops to include in your main Pandora necklace, or even necklace around your neck. The idea demonstrates a particular expressive value because it permits a page involving bracelets in whose portions originated in men and women in your area, and also whoever aspiration will be <a href="http://www.cheap-pandorabracelets.com" target="_blank" title="pandora shops uk"><b>pandora shops uk</b></a> the one you have.
But still , entirely exactly like any kind of additional factor with this planet, each goes through no real surprise use as well as dissect. Even though inexpensive pandora anklet bracelets may well truly previous ( or perhaps go beyond) any stretch of your time, the customer should without having exception teach sustain your outstanding Pandora piece of art.
Name:
Anonymous2011-05-22 21:16
I was about to download dta, and then i thought, when have i ever wanted to download all the images in one thread? so i didn't.
>>228
I think it's pretty much a dead project. There's source code of it floating around somewhere, though. Use DownThemAll! if you're using Firefox anyway.
There are many brands of <a href="http://www.barbourjackets-uk.org/"><strong>barbour fusilier</strong></a> in the market today. Each of the brand promises to bring out something new to the customers.
I know shit about writing applications. If I knew how, I don't think it'd betoo hard.
But I don't. So we're fucked. DtA a shit.
Name:
Anonymous2012-05-13 14:35
>>239
Never mind. I the switch hasn't affected it.
I was a bit worried because my not4changrab didn't work on the dev page, but according to moot's post about the switch happening at 12pm EST and not4changrab still working, I guess things are fine.
Best extension I've ever used for downloading images.
Name:
Anonymous2012-05-13 19:51
Haha, came here specifically because the extension's dead. It's utility makes me want to dive into the code, but I don't know a bit of Javascript or what changes broke it!
The new update broke quite a few scripts. I've managed to sort out my rather simply stylish theme, but there are still things that I can't do, that need tweaking.
Like 4chan sounds and of course, 4changrab.
Name:
Anonymous2012-05-14 2:40
This extension could probably be fixed up, or just plain rewritten, but I'm not going to be the one to do it. I do like some of the things about its interface and was even using it for a while with a modified 4chan X.
What I'm using for now though is the newest 4chan X and DownThemAll.
Turn on "File Info Formatting" in 4chan X so that the image links become the upload filenames. Then in dTa use the fast filter /^http://images.4chan.org/ from the 4chan X tips. Make sure you click "Disable other filters" and set your Renaming Mask to *text* and it will download them with the link (original) names. Sort by the Download field once you have them selected and it will even have them all grouped together in the posted order.
It's more cluttered, but it is usuable and you will get the original filenames this way. In some ways it's more flexible.
It's a shame 4chan with 4chanX's file formatting on looks messy as shit, but that's a small price to pay unless someone remakes not4changrab.
Thanks.
Name:
Anonymous2012-05-14 14:05
>>245
Is there any way to pick and choose which files to download in dTa with the original names?
Name:
Anonymous2012-05-14 15:50
>>246
You're welcome. I think it looks cleaner that way, but to each their own.
>>247
Yes, it lists every link it finds and the filter just selects the image links before you download. You can uncheck whatever you don't want. Unless you mean some being original and some the timestamp? The renaming mask decides that. One of the cool things about dTa though is you can also use it on a partial selection of a page.
I forgot you can add a regular filter instead of using the fast filter. You end up with an easy checkbox you can name "4chan images" or whatever. It's also probably a good idea to limit the Concurrent Downloads in the preferences, to be nice to the servers.
This is admittedly a convoluted way of doing things and relies on 4chan X, but functionally it's pretty decent.
>>252
You don't need to disable 4chan X, just the file info formatting setting on 4chan X.
Name:
Anonymous2012-09-07 0:34
looks like this is broken again, files show up but it doesn't download D:
Name:
Anonymous2012-09-07 7:56
I only admitted to being a brony because I found a “wet-mane” picture of applejack incredibly sexy.
I started watching episodes on youtube just to see what everyone was talking about, and it wasn’t until I was about five episodes in that I realized that I just couldn’t stop.
A few days later, I was hanging out with a friend who was also a bit of a brony, and I mentioned that I had started watching FiM on youtube. I told them that I still wasn’t sure if I really liked it or not (it was mostly true at the time), when I looked at her laptop screen and the “wet-mane” picture appeared. Being the first time either of us had seen it we both started to say something like “Wow, Applejack looks really hot with her mane like that”. We both stopped halfway through the sentence and had this exchange:
“Did we both almost admit to being attracted to a cartoon pony?”
“Yes, we did.”
“No one ever hears about that.”
“Agreed.”
I’ve become a lot more open about my brony-ness ever since.
Name:
Anonymous2012-09-22 23:26
>>254
It's working fine here, not sure what could be causing it to stop working for you.
Try disabling some things and see if it works normally, see if it is the 4chan API causing problems and try disabling it.
I've just uploaded a version of 4chanGrab that uses 4chan's new API, fixed a the download, and published it to Github. Feel free to fork it and modify it and submit a pull request: https://github.com/acidrain1983/4chanGrab#readme
>>271
I have released a new version that supports foolz.us, however since installgentoo.net is not an archive for images (it does not save the original images) it's not a true archive for our usage and I won't be adding support for it.
The ones I use most from that list after the two you mentioned are warosu, rbt, and heinessen. They all archive images, at least on the boards I use them for.
Name:
Anonymous2013-11-25 11:57
7b7fb405 spam this bbm pin and phone number 07759230514
Name:
AcIdrain19832013-11-25 19:09
>>276
I took a look at those sites and from what I can tell all of them use the general same html layout. I should be able to set it up for one of the archives and use just the url structure "/<board>/thread/<id>" and whitelist and it'll work for all current and future archive boards from them.
I'll work on it when I have free time later today.
Name:
AcIdrain19832013-11-28 3:01
I've updated the extension again it should work for all most foolz.us archives.
Feel free to request additional boards or suggestions.
Name:
Anonymous2013-11-28 13:02
>>279
Hey man, Happy Thanksgiving and thanks for this! I use the extension mostly for preserving filenames, and this version makes using archives a lot more convenient.
I did notice some strange behavior where, if a thread on a board archive has no subject, the proposed save folder seems to be the first subject that is found on a post in the thread. Hopefully that info is useful to you.
Also, is there a way to revert to the old behavior if a thread has just died but the page is still open and the images are still being served by the 4chan server? Right now, if a thread dies, you can try to call up the menu but it will fail, even if the images are still live and downloadable on the site. The old versions would just let you go for it.
I will look into the subject issue; Are you having that issue on all the boards or just some of them?
Regarding the behavior; I believe your talking about 4chan's use of the API instead of scraping the page for the content? I can set it up if the API fails it'll ask if you want to revert back to the old behavior. I'll work on that soon.