How can you get 4chan time to work on the text boards?
Name:
aeosynth!zdxFBW2hCw2010-02-17 6:55
>>7
I guess I could seperate date parsing from date manipulation, then check the url to see which parser to use. Give me a sec....
Updated.
Name:
Anonymous2010-02-17 8:29
>>8
Cheers. It works except there's some brackets that appear after the date :
02/17/2010()06:55AM
Name:
92010-02-17 8:31
Forgot to mention the brackets only appear on the text boards.
Name:
Anonymous2010-02-17 15:35
How come insta-click doesnt work on google searches?
Name:
aeosynth!zdxFBW2hCw2010-02-17 19:03
>>9 >>10
actually the brackets appear on the imageboards too, you just don't notice it because they're being used to enclose the day of the week. the text boards don't display the dotw, so the brackets are empty there. change the date formatting yourself.
I guess I could extract the formatting into a seperate function, too; that would probably be easier than figuring out the dotw based on the timestamp.
>>11
b/c insta-click only sees the links available at page load, while google uses ajax to insert more links after page load. let me fix that....
Updated.
Name:
Anonymous2010-02-18 8:14
>>12
I found a third option - include the bracketsparens in the matches.
4chan time updated.
Name:
Anonymous2010-02-18 8:33
is there a way to make /b/ackwash compatible with fychan? because it doesn't work for me
Hey man, I was wondering if you could add easymodo on the related boards (/a/ /jp/ /m/ /sp/ ). Sometimes, the archive has sauce for images.
Name:
Anonymous2010-02-18 21:50
Also, now that "Quick post" has been removed, I've noticed that sometimes the thread updater duplicates the posts you make. http://i46.tinypic.com/2q0lgqq.jpg
Browser is opera 10.50
Name:
Anonymous2010-02-18 21:54
>>18
If you're talking about 4chan sauce, add whatever url works to the prefix array.
>>26
stack trace plox. I don't support opera usb, only the normal Opera. 10.50+ is required now for json support, and the emulator isn't needed anymore.
so - make sure 4chan x is the only script in your userscript folder, reload a 4chan page, look for errors in the error console. repeat for backwash.
Hey I'm using this thread filter but I get bands where the threads are hidden.
// ==UserScript==
// @name ShiichanFilter
// @namespace 4ch
// @include http://dis.4chan.org/*;
// ==/UserScript==
function gcl(vclass){return document.getElementsByClassName(vclass)}
var filt=/test1|text2|text3/gim;
var filt2=/name1|name2|name3/gim;
var filt3=/thread1|thread2|thread3/gim; //Links/threadnames
function tag(x,y){if(!y){return document.getElementsByTagName(x)}else{return x.getElementsByTagName(y)}};
function sa(x,y,z){x.setAttribute(y,z)};
var posts=tag('blockquote');var pl=posts.length;//hide by text
for(var d=0;d<pl;d++){if(posts[d].innerHTML.search(filt)!=-1){sa(posts[d].parentNode,'style','display:none')}else{sa(posts[d].parentNode,'style','display:inline')}}
var ss2=gcl("postername");//hide by postername
for(var d=0;d<pl;d++){if(ss2[d].innerHTML.search(filt2)!=-1){sa(ss2[d].parentNode.parentNode.parentNode,'style','display:none')}}
var st2=gcl("replies");//hide entire thread
for(var d in st2){if(st2[d].parentNode.innerHTML.search(filt3)!=-1){sa(st2[d].parentNode.parentNode.parentNode,"style","display:none")}}
var sd2=tag("a");//hide thread from links
for(var d in sd2){if(sd2[d].innerHTML.search(filt3)!=-1){sa(sd2[d],"style","display:none");}}
Is there a way to modify the above code to make it hide threads the way this script does? :
var threads, thread;
threads = document.evaluate("//div[@class='border']", document, null, XPathResult.UNORDERED_NODE_SNAPSHOT_TYPE, null);
for (var i = 0; i < threads.snapshotLength; i++) {
thread = threads.snapshotItem(i);
if (-1 != thread.childNodes[3].childNodes[3].childNodes[1].childNodes[1].textContent.search(/200[4-8]-[0-9][0-9]-[0-9][0-9] [0-9][0-9]:[0-9][0-9]/g)) {
thread.style.display = "none";
}
}
/* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details. */
Name:
Anonymous2010-02-23 9:48
>>41
Cheers. How do I get this bookmarklet to work on imagefap?
dont u think that your filter causes less moderation because less spam is reported?
Name:
aeosynth!zdxFBW2hCw2010-02-24 7:04
>>48
probably. I wish 4chan automatically filtered reported posts, but it doesn't.
Name:
Anonymous2010-02-25 8:30
bump
Name:
Anonymous2010-02-25 9:38
>>41 When i use this filter and I want to filter soemthing with a slash "/" The script ceases to work. I think this is because "//" is used for coments or something. Is there a workaround? I tried "%2F" the url encoding for slash but that didnt work...
Name:
aeosynth!zdxFBW2hCw2010-02-25 13:33
>>51
it's because `/' is used to denote the beginning and end of a regex. escape it with a backslash `\': 1/0 -> 1\/0.
>>52
Ok so if I wanted to filter say the string "/k/" I would enter this in the script?
"/\/k/\/"
Name:
aeosynth!zdxFBW2hCw2010-02-25 15:55
>>53
if that's the only pattern you're searching for, then yeah, that'll work. if you decide you want to search for more stuff, then add a bar `|': /\/k\/|pattern2/ .
honestly though, the 4chan filter works on text boards, why would you want a script that forces you to edit its source to change anything? if you're a developer, then yeah small codesizes are great because they're easier to understand/hack, but for an end-user, that just seems masochistic.
(I swear I'll (eventually) update my scripts so that everyone has the same options gui as the firefriends)
Name:
Anonymous2010-02-25 17:02
>>54
Your 4chan filter cannot hide threads on the text boards thats why :( I have to mess around with that awful script
Name:
aeosynth!zdxFBW2hCw2010-02-26 17:04
>>55
Ah, you should have told me that in the first place. I just tried it and thread hiding works except for tripcodes and subjects. Does putting 'anon' in the name field not hide any threads?
Would like to see a way for the filter to show you what a filter is affecting, think it was requested on the us.o page, just putting it here too.
Name:
Anonymous2010-02-28 12:34
What are chances of you developing a mini 4chan X for the text boards?
Name:
aeosynth!zdxFBW2hCw2010-02-28 19:03
>>60
trip + subject filtering should be fixed now.
Name:
Anonymous2010-02-28 21:55
I haven't read the thread so I don't know if it's already been said, but you should have an option in the filter to hide posts that reply to posts you have hidden.
Name:
Anonymous2010-02-28 23:07
Why is it when i try to do a quick reply on a NSFW board, the ad at the top shows up in the popup window?
Name:
aeosynth!zdxFBW2hCw2010-02-28 23:26
>>62
That's planned, but I'm gonna have to rewrite 4chan X to thread replies first.
>>63
because you're not using a decent ad blocker.
Hey I am getting some weird issues. As you can see in this screenshot: http://img411.imageshack.us/img411/3483/downloadv.png
I am getting double updater boxes and double arrows and yacie stop working when this happens. I am running chrome with 3 extensions:
4chan x
yacie
/b/ackwash reloaded
any help is gladly appreciated.
Name:
aeosynth!zdxFBW2hCw2010-03-06 0:35
Well, I updated 4chan x. I think I've solved the multiples bug on Firefox, on Chrome not so much, and now for some reason Quick Reply on Chrome doesn't work....
Name:
aeosynth!zdxFBW2hCw2010-03-06 5:05
>>67
false alarm. god damn fucking chrome doesn't know how to upgrade scripts.
uninstall / reinstall 4chan x and the bug should be fixed.
Name:
Anonymous2010-03-11 9:20
Would you consider porting 4chanX to work on 420chan ?
Name:
aeosynth!zdxFBW2hCw2010-03-11 12:48
>>69
I don't use 420chan, so no. If someone else ports it and sends me a patch, then I might support it.
Name:
Anonymous2010-03-11 13:51
Uncaught exception: Error: WRONG_ARGUMENTS_ERR
Error thrown at line 1013, column 2 in x(xpath, root) in .user.js.js:
return document.evaluate(xpath, root, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null).singleNodeValue;
called from line 108, column 0 in <anonymous function>() in .user.js.js:
const form = x('./form');
called from line 44, column 0 in .user.js.js:
(function() {// <-- Opera wrapper
I'm using Opera 10.5. Not sure what I'm doing wrong.
Name:
aeosynth!zdxFBW2hCw2010-03-11 19:46
>>71
um, it would help if you stated which script you were having trouble with (4chan x). that would help me and other users.
I just tested and it works find for me in Opera 10.50. remove all other scripts from your js folder and try again; that's the only think I can think of.
Did moot do something to 4chan so that now I can't quick reply on /g/ with 4chan X(+that other script of yours which name I forgot)?
Name:
aeosynth!zdxFBW2hCw2010-03-13 21:28
>>79 (+that other script of yours which name I forgot)
honestly, how hard is it for you to look in your greasemonkey menu and see what's enabled? quick reply works fine for me on /g/, both replying from the front page and inside the thread.
Name:
Anonymous2010-03-13 22:34
>>80
It's chromium so I had to "blend" your scripts with a blendtec total blender for it to work without it recursively backlinking(you know what I mean).
Unless updating to the latest build of chromium fucked it up for me... BRB.
it does seem that quick reply on chromium is broken.
OT, isn't chromium's tab completion pretty sweet? it's not enough to make me switch, but it is cool.
Name:
Anonymous2010-03-13 23:16
>>isn't chromium's tab completion pretty sweet?
yes very
anyways, it seems there's a problem with the site(yet again) and the lag is interfering with me trying to reply.
Probably another DDoS or something.
Name:
Anonymous2010-03-14 5:54
I've noticed a discrepancy in the post count. The favicon for 4chanX gives the right one but the thread filter gives a huge one. Any ideas? Is this to do with userscript order?
Name:
aeosynth!zdxFBW2hCw2010-03-14 6:30
>>84
4chan filter shows the total number of posts, while 4chan x shows the number of unread posts, which goes down as you scroll the page.
4chan x does nothing for me (Opera 10.51 RC1). Hasn't since 10.10.
These are the errors I get when loading a 4chan thread with 4chan x active:
==============
JavaScript
User JS compilation
Syntax error at line 18 :
ki|antedFiles))"</A>,
--------------------^
syntax error
JavaScript
User JS compilation
Syntax error at line 186 :
(locationHref))</A> {
--------------------^
in string literal: invalid line terminator.
===============
Any idea how to fix?
Name:
Error2010-03-14 12:14
Never mind...updating to latest version, and it's suddenly working. Nice.
Name:
aeosynth!zdxFBW2hCw2010-03-14 20:23
>>86
It works fine for me in either order, so I'm thinking it's a conflict with another script. First make sure you're using the latest versions of 4chan x and 4chan filter, then disable everything except for those two scripts. If the bug persists, swap their order.
Just installed the script for the first time on the FF 3.6.3pre - the menu does not get displayed. I see "Watched Threads" and added up / down / hide buttons next to posts, though.
Name:
Anonymous2010-03-24 14:59
Just installed the script for the first time on the FF 3.6.3pre - the menu does not get displayed. I see "Watched Threads" and added up / down / hide buttons next to posts, though.
Name:
Anonymous2010-03-24 15:10
Sorry for the double post. Anyway, I overlooked that one ought to place the script above the 4chan filter, it works just fine now. Sorry resp. thanks.
Name:
INFECTED!i7MUSHROOM2010-03-25 0:00
The 4chan X report button is not working correctly. It seems to be reporting the thread at the top of the page no matter which thread I try to report.
Problem with 4chan filter. When the op-post of a thread gets filtered, there is no stub for that thread even if the option "show stubs" is turned on. Furthermore, hidden threads won't show up when I click "show". The only way to see them is to turn off the filter and reload.
I use Firefox 3.6.2 and 4chan X with "thread hiding" enabled.
Name:
Siesta2010-03-27 19:37
I was wondering if you could look over my script and see what's wrong with it.
Basically, what I want it to do is redirect the user back to the boards front page if it isn't in the array of supported boards (boards variable), but the thread has 404'd
The problem is that it also redirects the 404'd threads in the supported boards to the front page instead of the archive
I have tried everything. god dammit.
Thanks in advance, bro.
Name:
4chan filter2010-03-27 20:54
Am I supposed to refresh after entering a word and pressing hide in 4chan filter?
how am i supposed to view what words i filtered?
after pressing hide on the second word, the previous words seem to get deleted from the list, whereever it is, showing the threads hidden from those words.
Name:
4chan filter2010-03-27 21:11
just figured what's filtered is whatis input there, up in the tiny space.
>>108
I love you. I was actually just looking into writing a script that does the exact same thing, even though I'd probably fuck it up (also was going to only have easymodo support).
>>99 >>93 here, thank you so much, that's brilliant and works perfectly from what I see
Name:
Anonymous2010-03-29 6:21
When auto-hidden filter displays just "Images: X Posts: Y". Can you make it so it displays number of hidden posts too? For example, like this "Images: X Posts: Y(Z)", where Z is the number of hidden posts.
>>117 yes i'm very stupid.
Apparently so for linking to an imageboard thread that will expire. Threads on these textboards last for years.
Name:
Anonymous2010-03-30 1:31
>>119
i just wanted for you guys/guy to see the picture i drew.
since i can't explain it as well. >>118
ask me what doesn't make sense.
hoping that it makes at least some sense.
of course a lot of it doesn't.
Name:
Anonymous2010-03-30 1:48
>>119
i just wanted for you guys/guy to see the picture i drew.
since i can't explain it as well. >>118
ask me what doesn't make sense.
hoping that it makes at least some sense.
of course a lot of it doesn't.
Name:
Anonymous2010-03-30 1:52
>>121
i don't suppose i can delete this post now can i?
the 4chan filter already does most of what you want. you're basically making the following feature requests:
arbitrary actions on 'hits'
seperate filter list for each action
newline delimited filters
ability to disable filters w/o deleting them.
I think this is doable.
Name:
Anonymous2010-03-30 5:45
>>124
Sure, I think that's what I meant possibly.
Chanchimp can do different stuff to filters,
I don't know if you seen it in action,
and 4chan filter, filtered more, most importantly topics themselves unless I did something wrong on chanchimp.
I was thinking of how to make it more easier to use, make certain threads more easier to find and hide, and ...stuff.
I think it does look more easier than both filters.
I'd still like to use some of the options from 4chan filter like the ability to hide and open posts manually, which is a smaller part of it. I'm too lazy to learn the rest of the capabilities of Chanchimp.
I could have come up with more sillier requests couldn't I?
Name:
Anonymous2010-03-30 5:59
course i have to guess there are other ways to filter threads other than using scripts on grease monkey that can do more...i don't know really.
i was also thinking of, as you hide threads, the next post that isn't hidden appears from the bottom of the list of threads, so the first page is full of posts you didn't hide.
i hope that makes sense.
this may be the effect of some other script i'm too lazy to search for.
i'm getting confused on which thread to post on.
Name:
aeosynth!zdxFBW2hCw2010-03-30 6:57
>>126 i'm getting confused on which thread to post on.
post here.
i was also thinking of, as you hide threads, the next post that isn't hidden appears from the bottom of the list of threads, so the first page is full of posts you didn't hide.
>>132 i think loading up the filter and all the posts on one page would take long to load. i think loading up the filter i think think
have you tried it?
Name:
Anonymous2010-03-30 17:06
>>133
it doesn't allow me to hide posts as it doesn't work with 4chan extension.
and i don't think it works with filters.
was i supposed to use another script for these functions?
that's what they are called aren't they?
Name:
Anonymous2010-04-02 6:13
Can you separate the manual filtering function from 4chan filter so i can switch between how i filter, without having to delete what i typed in that thingie that knows what to filter automatically?
Any work on my fantasy filter?
i'll post the images that was drawn if you don't have them.
Name:
aeosynth!zdxFBW2hCw2010-04-03 16:16
>>139
I want to rewrite 4chan x / 4chan filter first before I add non-trivial features. Go ahead and post the images so that everyone else can see them too.
Hi... last night /g/ recommended 4chan x for me, it does everything that I want but - I use a very dark page style, and I was wondering if there is anyway I can change the background of the quick reply / threadwatcher / updater to a color of my choice... I tried changing the hex font color and that only helped a little
Name:
aeosynth!zdxFBW2hCw2010-04-03 23:52
>>142
In your userstyle (Hurr, right?), change td.reply to just .reply.
Name:
Anonymous2010-04-04 1:37
That worked perfectly!
But now the thread updater and the thread watcher extends across the screen....
2 separate filters.
so if you disable one, the other one is still in effect.
i manually hide 2 threads
and the automatic filter hides 3 threads
5/10 threads shown
i disable the automatic one so all but the 2 threads that i hidden manually are shown.
8/10 threads shown
idea came from using 4chan extension and your bloody filter.
in case you wanted us to not use the 4chan extension with your scripts.
not all threads are opened when you disable the filter.
filter idea #192 - automatic rating and filter
a filter somehow allows you to know how crappy a comment is depending on your filters and what you told it to do.
like a thread has a phrase of that you moderately hate
like "niggers"
and another thread has a phrase that is extremely retarded
like "you fall in love, you lose."
somewhere near the post,
the first one would say like
Awesome:-10 or stupid:3
the second one would say
Awesome:-20 or stupid:5
this would also work for filters that are positive like
dicks
Awesome:500 or stupid:-2000
of course i'm not trying to make any sense what so ever.
if the comment has multiple phrases of different kinds, maybe it would show both the most awesomest "level" and most stupidest "level"
The values would be made by the one who uses it of course.
This idea is insane and likely impossible, but i just wanted to share it. sorry.
and i'm sorry i only talk about your filtering systems.
>>147 Could you make a script that makes the thread IDs at http://dis.4chan.org/lounge/subject.txt hyperlink to the respective threads? Could you make a script a script
ok $ wget -qO - http://dis.4chan.org/lounge/subject.txt | sed s'/^\([^>]*>[^>]*>[^>]*>\)\([^<]*\)\(.*\)/\1<a href="http:\/\/dis.4chan.org\/read\/lounge\/\2">\2<\/a>\3<br>/' > lounge.html
Name:
Emoangl422010-04-05 18:23
-Ahem- This is probably totally irrevalent to this thread, but last night on Emopuddle i believe one of your trolls (Who went by the name of "Pedobear") tried to troll on EP, and sadly failed, i out trolled him, and he gave up in about 10 minutes. I am a /b/tard and a channer, and i will have to say that "Pedobear" failed epicly, so Pedobear, if you're reading this, eat shit and die. Kthanxbai.
Name:
Anonymous2010-04-06 0:47
another idea from that stupid guy who can't type:
all other threads are filtered unless they have certain words/phrase in it.
of course this is for searching for something and just another way to achieve what i'm asking for again.
maybe it works different somehow from what i've said already
unless, you know another script someone has already made that does this.
reverse filter.
i don't know.
Name:
aeosynth!zdxFBW2hCw2010-04-06 2:11
>>150
that's the arbitrary actions (you?) already requested. I think I can do this by adding classes to matching posts, and letting css perform the action.
say you want a post containing a certain phrase highlighted, you add that phrase to the 'highlight' filterset, then when I see a post containing that phrase, I add ' highlight' to its class. then you have your custom userstyle where you have something like
td.highlight { background-color: red !important; }
it should be pretty easy to implement, but I want to finish start the effing rewrite first, and right now I'm gonna go add favicons to uzbl[1].
>>151
it's like a search function and it hides all other threads that don't apply.
instead of selecting things to hide.
it selects what things to show.
simply showing what you want to see.
is much more faster than finding and imputing what you want to hide. i must stop mixing the words filter and hide.
onto the example.
blue
red
orange
green
black
filter 1 hides the colors red, orange, and green.
blue and black are shown as they don't apply to the filter.
filter 2 shows only blue
only the color blue is shown as the other colors don't apply to the filter.
mind me as i mix up words.
i'm guessing you already knew what i was talking about and i didn't have to bother explaining it.
I'm just that guy who made all those stupid filter requests.
i'm not sure if you're talking about another thing i have said
on an unrelated note/i don't know, I'd also love to find some way so it alerts me if a certain thread with certain words is made.
it would automatically search from time to time
or the search function starts when you click some button.
it might be exactly like a search function which i haven't bothered to look for/must be hard to create.
i'm sorry i only ask/talk stupidly about filter functions.
what i said before sounded retarded.
god damn you computer talk.
Name:
aeosynth!zdxFBW2hCw2010-04-06 4:37
>>152 it's like a search function and it hides all other threads that don't apply.
oh, you're talking about negated regexes. to match a post that DOESN'T contain 'blue', use ^(?![^]*blue) . Right now you can't restrict filters to op / not op, but I'll add that (eventually).
i must stop mixing the words filter and hide.
eh, I mix them all the time.
I'd also love to find some way so it alerts me if a certain thread with certain words is made.
ask /prog/ to make you a web scraper. I'm sure someone's already done this.
i'm sorry i only ask/talk stupidly about filter functions.
you don't have to use my entire 'suite' to get help. I don't even use everything I've made.
Name:
Anonymous2010-04-08 5:22
i thought about why it would be difficult, not caring i wouldn't know crap about why, but i came up with something.
so you can't search for threads and comments, identify them individually as a thread and comment, this seems to be the difficult part:somehow apply hide to all threads and apply "a not hide"/function disabled/action deleted to threads with the exact words or phrase in the comment field?
so it might be hard to have the filter do something to one type of thing and have it not do to the same thing that has same basic something, but with something specific somewhere else?
logic seems extremely important in this.
Name:
Anonymous2010-04-08 5:27
>>157
i thought in the middle of that, that it would be stupid to hide comments without the phrase/comment searched for as that is normal for a comment. separate filters for starting thread...thing, and comments would obviously be important.
Name:
aeosynth!zdxFBW2hCw2010-04-08 6:31
>>157 >>158
you're kinda not making sense again. try to reread and revise your post before submitting, k? no more stream-of-consciousness for you.
so you can't search for threads and comments, identify them individually as a thread and comment,
not yet.
this seems to be the difficult part:somehow apply hide to all threads and apply "a not hide"/function disabled/action deleted to threads with the exact words or phrase in the comment field?
with custom filterlists, you'll be able to create a whitelist to unhide stuff hidden by other filters. also, I told you in >>156 how to make 'reverse' filters to hide stuff that doesn't match some word / phrase, try that out.
I have some free time next week, so I'll stop procrastinating and rewrite 4chan x / filter, adding some of the stuff you've requested.
Name:
Anonymous2010-04-08 13:35
I thought about why it would be difficult, not caring about that I don't know crap about anything, and I came up with something.
either the difficult comes up in one of these steps:
1. searching for each and every thread and comment,
2. identify them individually and differently as a thread and comment,
3. this seems to be the difficult part:
and somehow apply hide to all threads and apply "a not hide"/function disabled/action deleted to threads with the exact words or phrase in the comment field?
so it might be hard to have the filter do something like
hide the white box,
but not hide the white boxes with a black circle in them?
i also read the word comment in my post and...
having this apply to a comment is stupid
the comment wouldn't have the "filter phrase" that allows it to shown.
though the first comment or comment that starts the thread (i need to remember/learn of this word) would be shown, most of the comments would be hidden.
thread and comment should have different filters.
this should only apply to the comment that starts the thread, the first comment that always shows on the list of threads no matter how much replies it gets.
I can see how separating the comment and the first comment that starts the thread be difficult. they have the same sort of data i guess.
4chan x used to work flawlessly in opera 10.10 and 10.20 snapshot, but in 10.50+, features like thread watcher, thread updater doesn't work. and options window doesn't show up. any idea why?
Name:
Anonymous2010-04-16 8:38
error console doesn't report anything
Name:
aeosynth!zdxFBW2hCw2010-04-16 10:44
I'm gonna release the 4chan x rewrite today or tomorrow, try again then.
>>175
Quick reply window has the damn ad in front of it. Using AdBlockPlus fixes the problem, but I'd like to be able to use the script without having to do that. I know it sounds corny, but I like to click and see the ads so I help moot pay the bills. ( ≖‿≖)
But in all seriousness, it would be nice if you could fix that, thanks.
Name:
Anonymous2010-04-24 3:51
>>175
I want to thank you for all this hard work you've been doing, making great scripts that make the experience of using 4chan better. You've done more work towards achieving that goal than Damage has done in three years! Keep up the good work, man. :)
/r/ option to hide the new updater window. it bugs me a lot.
also, to avoid conflicts, what is the preferred order of x/updater/filter/sauce/backwash (and 4chan enhanced, if you know)?
Name:
Anonymous2010-04-24 8:31
>>180
oh, and ya4cie i guess, though i don't use that. i might if i could disable the interface at the top of the page. :(
Name:
Anonymous2010-04-24 11:18
>>175
you are awesome, dude
works perfectly in opera now
Name:
Anonymous2010-04-24 12:27
After installing the new version of 4chan X, it opened the quick reply box, which I moved to the lower left. But now whenever I try to reply and click to quick reply the page jumps down like when you press the "End" key and the quick reply box is nowhere to be found.
I'm assuming "it" saved the position of the box outside of frame and now I can't access it. is there any way to fix this? reinstalling it does nothing, where may I find the settings for this extension?(chromium BTW)
Name:
Anonymous2010-04-24 12:53
>>184
NVM, found it on C:\Users\ME\AppData\Local\Chromium\User Data\Default\Local Storage
I just deleted all the files that were modified today and when I tried to quick reply it worked.
updated 4chan x to fix this. moving the quick reply (or any other) box to the bottom doesn't break things anymore.
Name:
aeosynth!zdxFBW2hCw2010-04-25 0:29
>>180 /r/ option to hide the new updater window. it bugs me a lot.
#updater { display: none !important; }
preferred order
4chan x before 4chan filter, so the filter can hide entire threads.
4chan filter before ya4cie, if you want the ya4cie controls in the filter's dialog box.
order shouldn't matter for anything else; if it does, report it as a bug.
Name:
that filter idea guy2010-04-25 0:50
the never ever fucking open or show filter
this very quickly hides threads of various things and locks them into hidden. so they won't open when you select "show all"
cause i think you would know what images i might be talking about.
and then some.
this could just be one of the "what to do with the things in this list" things.
make image filtering easier
this is part of the idea above.
size, dimensions and file name are the three parts i think are the things that identify images from other images and i don't know how you group or arrange "filter "this" or values" to hide a certain image.
certain images of the same size and name exist, even the same dimensions exist because they are maybe made with the same media or a screen shot or camera dimensions.
or coincidence.
so they have to be grouped.
i didn't really read anything about your filter and images
so you might have done something like this already.
important in hiding threads that start with only an image.
i'd like a right chick thingie for this too like adblock so filtering could be much faster. perhaps it goes beyond the limit of scripts. i don't know.
you can already filter size / dimension / file name. just put those in the 'file' row.
right chick thingie
4chan x has a left-click thingie....
Name:
Anonymous2010-04-25 3:50
Could Insta-click work with thumbnailed picture links? Like the ones on pixiv.
Name:
Anonymous2010-04-25 8:05
>>187
cool, thanks. i forgot to mention, when hiding threads with the new X it doesn't remove the divider bar thing before (after?) the thread. see http://i39.tinypic.com/jsk0v9.jpg (adblock/other scripts are disabled, etc.) it also doesn't remove the anchor from the thread nav links, so you get stuck if such a thread is up.
a couple less important issues:
it's hard to get a screenshot because it's basically invisible but when you use the bottom thread nav link to jump to the next page #0 anchor, the link "button" for #1 renders a little too high, giving you only about 5 pixels of vertical range to click to move down. i'm not sure if that made sense but if you try it you'll see, i hope. is there a way to correct this or is it just something inherent to the process that you just gotta live with?
lastly, can you add an 'add bottom space' option like the 4chan extension has, to compensate for page height if the bottom thread has too few replies?
fucking lol. the thread hider on 4chan x renders on /f/ and hides the entire thread list.
Name:
Anonymous2010-04-26 8:02
/b/ackwash treats inter-board links (>>>/b/ or >>>/b/123456) as regular post links and chokes trying to load the popup/inline box since it can't find the post in question.
Name:
Anonymous2010-04-26 8:46
>>198
addendum: i think it only happens in replies, not OP.
Name:
Anonymous2010-04-26 12:58
FEATURE REQUEST
Add the menu to text boards and imageboards like in the 4chan add on . You can make it a user script command
There was this feature where if I had text selected when quoting a post it would be ...quoted.
For example If I had this text selected, when I clicked the "quote link" it would appear below the quoted post number like so: >>POST#
>this text selected
>>204 it increments the countdown
that's a feature; if you see it going to +100, you should probably just manually update. but yeah, I will add retries.
>>206
Not sure why you'd want a png version, but here:
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAgMAAABinRfyAAAACVBMVEUBAAAAAADb29tmCTDaAAAAAXRSTlMAQObYZgAAADxJREFUaN5jYIADVgfGAAapCWxLGNiWSE1gkFoitYSBNYA1gAEJBLAyMDAukXKAKIEQKZITGBgFWBzACgCbuwrJS57qoQAAAABJRU5ErkJggg%3D%3D
click 'options'
click 'add class'
type 'whitelist' (or whatever)
hit enter or click 'save'
in the filter, add whatever text you want to be whitelisted ('black circle')
hit 'apply'
how does manual filtering work now?
i don't know how you hide threads.
sometimes the filter shows the threads i hide using 4chan extension.
it shows a stub and the thread with that + in a box in both lines.
i can't close it until i click or double click the stub which then disappears allowing me to hide the thread using 4chan extension again.
Name:
Anonymous2010-04-28 20:52
Thread updater now doubles posts that have been followed by /b/ackwash if the post is at the end of the thread. Also, hiding the first thread on one board hides it on all boards.
Name:
Anonymous2010-04-28 22:42
I've noticed that in opera the posts jump around before the thread hider is added. Is there anyway to fix this?
>>219
it's this part in fychan mod:
// Adds [archive] links on /a/, /fk/, /jp/, /m/ and /sp/ (uses http://archive.easymodo.net/ ).
Fychan_AddArchive: function (rows)
{
if (!myFychan.config_AddArchiveLinks) return;
if (!(myFychan.boardname in {'a':1, 'fk':1, 'jp':1, 'm':1, 'sp':1})) return;
for( var i = 0, row; row = rows[i]; i++ )
{
var a = row;
while (a.nodeName != 'A')
a = a.nextSibling;
var img = a.getElementsByTagName('IMG')[0];
var md5 = img.getAttribute('md5');
>>160 2. identify them individually and differently as a thread and comment,
I got this working (github). -oO: op / not op.
to filter 'phrase' just from replies, do phrase -O
though the first comment or comment that starts the thread (i need to remember/learn of this word) would be shown, most of the comments would be hidden.
... you could actually do this with just css. to hide only replies but keep the op hidden, use: div.hide table {
display: none !important;
}
>>220
someone asked for that previously and I said no, let me take another look at this.
The error that shows up explaining why you cannot post doesn't appear in the quick reply box under Opera ("Error: Flood detected, post discarded", for example). Works great in Firefox though.
>>225
yeah, I can't do anything about that. in firefox I store errors in a global variable that you can see with about:config, while in other browsers I use localStorage, which is domain specific.
Without cross-domain storage, I can't pass any information from sys.4chan.org (where the errors show up), to boards.4chan.org (where you browse / quick reply).
>>229 whywouldyoudothat.jpg Back to the imageboards, pl-...
Nah, just kidding. I'll make an exception for you, since you coded such awesome scripts. :)
Name:
Anonymous2010-05-07 4:17
4chan Filter seems to have stopped working properly in the latest Chrome 5.0 Beta. The "Hidden Posts:" line no longer shows up in the filter controls, and filtering doesn't take effect. (I also have 4chan X, 4chan X Updater, and /b/ackwash Reloaded installed. They're all the latest versions.)
The Javascript console says "Uncaught TypeError: Cannot call method 'match' of undefined" for line 496 of the script. (Looks more like line 495 when I look at the file.)
Name:
Anonymous2010-05-07 6:45
I've noticed that the 4chan extension thread doesn't get any replies anymore. Guess everyone is using these scripts now.
Name:
Anonymous2010-05-07 8:04
>>1
You do great work man, god damn. You got a donate button or something so I can throw you a few bucks? :)
Name:
Anonymous2010-05-07 10:28
I just upgraded to the newest version on firefox, and when I click a post number outside of a thread to quick reply, it instead opens the thread. Was the quick reply feature outside of a thread canned?
Name:
Anonymous2010-05-07 15:43
In opera, in 4chan X, I can only accurately move the quick reply box while it's in the top left corner.
If it's not in the corner and I try to move it, it jumps back to the corner.
Name:
Anonymous2010-05-07 18:51
>>235
I'm pretty sure I started with no filters after updating the script version; the fields are all empty. But when I type "Anonymous" into the Name field and click "hide", nothing happens.
The filter window used to display "Hidden Posts: 0" (or whatever number) all the time, but now that line doesn't appear except when I click "show".
Fappe Tyme still works.
I'll check if there's another way to clear localstorage, in case the uninstall left behind something weird.
Name:
aeosynth!zdxFBW2hCw2010-05-07 20:06
>>237 another way to clear localstorage
ctrl+shift+j > storage, delete everything under boards.4chan.org.
>>238
Still no luck... I've uninstalled the other 4chan userscripts, and disabled all my other scripts/extensions. Also tried downgrading to 4chan Filter 6.3.4, which I think was the previous version I had installed. Nothing seems to fix it. Is anyone else seeing this with Chrome 5.0.375.29 (Official Build 46008) beta?
Name:
Anonymous2010-05-08 2:49
There's a problem with /b/ackwash and the thread updater where if you inline the last post, the updater adds the entire thread over again.
The quick reply appears to be broken on the latest update.
On another note: using a custom style here, forcing .reply to a certain width seems to also make the thread updater/thread watcher the same width, witch is rather an annoyance when it covers up the reply area. Any possible fix?
hidden-postcount
it's a bit complicated since there's nothing special about hiding anymore - you can actually remove the 'hide' class entirely - so I need to think about how to display stats.
Name:
aeosynth!zdxFBW2hCw2010-05-09 0:22
>>251 doesn't auto-filter
did you disable the us.o filter? that only breaks after it unhides everything.
>>252
also you can have arbitrarily many classes. i think stats for the currently shown class should be displayed by default, with an option to display all stats.
>>204 increments the countdown till next update instead of retrying.
added 'Retry'.
Name:
Anonymous2010-05-13 7:45
filter gets crazy when dealing with posts containing "reverse order" shit.
For example it contains the thing at the bottom of this post, which I don't write now cause it even fucks up this very text box!
See http://boards.4chan.org/b/res/227085248
And now
Go to:9p7n5/un.u
Name:
Anonymous2010-05-13 8:16
hi, I've been having problems with 4chan filter and 4chan x in Safari/glimmerblocker since 4chan x updated to 1.x (0.26.6 still works flawlessly). Specifically, the filter will appear in-page but won't actually filter posts.
I also get the same incompatibilities with the new 4chan x updater script.
Is there anything else I need to share to clarify my problem?
Name:
aeosynth!zdxFBW2hCw2010-05-13 8:49
>>262
does it work w/o glimmerblocker? take a look in safari's console for errors.
>>261 linking to a thread on /b/
yeah, next time, take a screenshot.
>>263
Never mind the link or screenshot, just try to select slowly the last line of >>261 : you'll notice the URL gets selected backwards.
When pasting it in the Comment field and pressing ENTER, everything goes fine, the post is hidden.
But adding filters after that is nearly impossible, cursor goes the wrong way and typing is a mess...
Anyway, I found another example : http://j.imagehost.org/view/0487/ScreenShot001
Name:
aeosynth!zdxFBW2hCw2010-05-14 3:23
>>265
you could delete the reversing character and replace it with a dot (regex char meaning 'match anything'). when I put my cursor after the semicolon and press delete twice, the text unreverses. then after typing a period, I have this in my filter:
Go to:.9p7n5/un.u
I'd recommend filtering the reverse character itself: \u202e
>>262 >>264 glimmerblocker
should be fixed. sorry for the wait, I don't always have access to a mac.
Name:
INFECTED!i7MUSHROOM2010-05-18 0:33
The quick report button is broken again.
Name:
aeosynth!zdxFBW2hCw2010-05-18 6:12
>>270
works fine for me in fx/chrome/opera. check console for errors, disable other scripts/addons. what browser / version are you using?
Name:
INFECTED!i7MUSHROOM2010-05-19 17:49
>>271
Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US; rv:1.9.2.3) Gecko/20100401 Firefox/3.6.3
It only does it on board pages (not individual thread pages). It selects the thread at the top of the page no matter which report button I click. It is the same problem I reported last time. I've disabled the other scripts (ya4cie, 4chan x updater, and 4chan filter) and it's still doing it.
Question.
Is the autowatch feature only supported on FF?
Because on chromium whenever I make a new thread, it isn't automatically "watched".(whether I have the option selected or not)
It's not that important a feature for me anyway since it's merely a click away from watching the thread, but I wanted to know whether it works on the other browsers or it was broken.
Also,
Thank you.
Name:
aeosynth!zdxFBW2hCw2010-05-20 18:48
>>274 Is the autowatch feature only supported on FF?
yes. same principle as >>226 - you don't know what the thread id is until 4chan tells you, and it tells you on the sys domain, which is inaccessible from the boards domain due to security restrictions.
Also, Thank you.
your welcome, Anonymous.
Name:
Anonymous2010-05-20 23:32
I keep switching between 4chan X and 4chrome because 4chrome has hover over a reply link to show a hovering box with the reply and because quick reply in it starts on the next line after the quote number, rather than right before the quote number, making you press down.
Not breaking, but still... Argh. It's hard to choose. Both are great, but 4chrome has some things I want and so does X.
quick reply in it starts on the next line after the quote number
I just installed 4chrome 9001.19, and it doesn't auto focus the text box, or add newlines.
Name:
Anonymous2010-05-23 11:38
How do I disable the "Hide" link near the quote number?
Disabling "Reply hiding" only removes the [-] next to the posts, but not the "Hide" link.
I sometimes accidentally click this instead of the quote number and it can get annoying.
I have also searched through the source for a "Hide" string, but it tells me no matches were found. What are you using to make this?
Name:
aeosynth!zdxFBW2hCw2010-05-23 12:01
>>278
that's in the 4chan filter, 'Manual Filtering'. It will be removed.
Name:
Anonymous2010-05-24 8:06
HEY AEOSYNTH
I hate to bother you with this off-topic post, but I kindly request your assistance. Currently in /sci/ and /lounge/ we're suffering from this troll who doesn't use a tripcode or a name to attention whore while he's trolling, but he ends all of his posts with the :/ emoticon as his identifier.
Someone on /sci/ coded a Greasemonkey script to filter his posts, and it does work, however it also has the unfortunate side effect of filtering all those legitimate posters who post URL links and other emoticon symbols. I also used the 4chan filter and put :/ into the comment field and it has the same exact effect (but at least with the 4chan filter I can easily turn it on/off under Opera). Anyway, I was wondering if it would be at all possible to simply filter the colon and ONE forward slash and not have it filter URLs and anything else but that. I would do this myself if I were an EXPERT PROGRAMMER and knew regex, but I do not know a lick of either.
I'd appreciate any and all help. If not, that's okay, and if it's not technically possible to accomplish, that's okay too. Thanks. Also, here's the code from the Greasemonkey script that the guy on /sci/ coded. Thanks.
(function(){
var posts = [];
var myclass = new RegExp('\\bpost\\b');
var divs = document.getElementsByTagName('div')
for(var i = 0; i < divs.length; ++i){
var classes = divs[i].className;
if(myclass.test(classes)) posts.push(divs[i]);
}
for(var i = 0; i < posts.length; ++i){
var postername = posts[i].getElementsByTagName('span')[3];
var postertrip = posts[i].getElementsByTagName('span')[4];
var postbody = posts[i].getElementsByTagName('blockquote')[0];
if(/:\//.test(postbody.innerHTML))
posts[i].parentNode.removeChild(posts[i]);
}
})();
(function(){
var posts = [];
var myclass = new RegExp('\\bpost\\b');
var divs = document.getElementsByTagName('div')
for(var i = 0; i < divs.length; ++i){
var classes = divs[i].className;
if(myclass.test(classes)) posts.push(divs[i]);
}
for(var i = 0; i < posts.length; ++i){
var postername = posts[i].getElementsByTagName('span')[3];
var postertrip = posts[i].getElementsByTagName('span')[4];
var postbody = posts[i].getElementsByTagName('blockquote')[0];
if(/:\$//.test(postbody.innerHTML))
posts[i].parentNode.removeChild(posts[i]);
}
})();
Where the hell do I put the $ in this code?
Name:
aeosynth!zdxFBW2hCw2010-05-24 20:12
hm, the text boards add some extra whitespace. you got the line right, I just gave you a non-working regex :/. instead, use: :\/\s+$
on this line: if(/:\/\s+$/.test(postbody.innerHTML))
I wrote a simple filter at >>41, you might be interested in that. if you use it, you can filter this guy with
var comments = /:\/\s+$/;
ending with :/ to verify that everything's working:
:/
Name:
aeosynth!zdxFBW2hCw2010-05-24 20:21
hm, reposting >>41 since the semicolon on the @include line is giving me errors.
/* This program is free software. It comes without any warranty, to
* the extent permitted by applicable law. You can redistribute it
* and/or modify it under the terms of the Do What The Fuck You Want
* To Public License, Version 2, as published by Sam Hocevar. See
* http://sam.zoy.org/wtfpl/COPYING for more details. */
var comments = /comment1|comment2/i;
var names = /name1|name2/i;
var subjects = /subject1|subject2/i;
var years = /200[4-8]/;
//utility
function $$(selector) {
return document.body.querySelectorAll(selector);
}
function x(xpath, root) {
return document
.evaluate(xpath, root, null, XPathResult.ANY_UNORDERED_NODE_TYPE, null)
.singleNodeValue;
}
//funk(s)
function filter(regex, nodes, className) {
for (var i = 0, l = nodes.length; i < l; i++) {
if (regex.test(nodes[i].textContent)) {
x('ancestor::div[starts-with(@class, "' + className + '")]', nodes[i])
.style.display = 'none';
}
}
}
//main
filter(comments, $$('blockquote'), 'post');
filter(names, $$('span.postername'), 'post');
filter(subjects, $$('span.replies + a'), 'border');
filter(years, $$('span.posterdate'), 'border');
do you want me to post this on us.o and maintain it? I still don't see why an end-user would want this instead of the gui filter.
>>284 do you want me to post this on us.o and maintain it? I still don't see why an end-user would want this instead of the gui filter.
If you want, sure. I already have a userscripts.org page on it however.
I still don't see why an end-user would want this instead of the gui filter.
The gui filter works good, but putting in :/ also unfortunately filters out URLs, just as the original script does. I just need a solution that filters out simply all posts that end with :/ and nothing else, and that includes URLs. Plus, when people install the script, boom, they're done, don't have to worry about anything else.
Also, I have scripts that ignore multiple tripcode users and certain text. Not sure if 4chan filter can filter multiple tripcode users and text, unless it actually does have that ability.
I'm going to try this new regex you suggested. Thanks for all your help, man. You're a good individual and a wonderful human being. :)
Name:
2872010-05-24 20:46
Never mind, I tried the code with the new regex you suggested, and it doesn't filter anything. His posts still show up for me. God damn, filtering this guy successfully without also the side effect of filtering all URLs is such a pain in the arse.
(function(){
var posts = [];
var myclass = new RegExp('\\bpost\\b');
var divs = document.getElementsByTagName('div')
for(var i = 0; i < divs.length; ++i){
var classes = divs[i].className;
if(myclass.test(classes)) posts.push(divs[i]);
}
for(var i = 0; i < posts.length; ++i){
var postername = posts[i].getElementsByTagName('span')[3];
var postertrip = posts[i].getElementsByTagName('span')[4];
var postbody = posts[i].getElementsByTagName('blockquote')[0];
if(/:\/\s+$/.test(postbody.innerHTML))
posts[i].parentNode.removeChild(posts[i]);
}
})();
putting :/\s+$ in the gui filter hides >>283. you can add multiple patterns by seperating them with a semicolon - this is in my comment field for /b/:
eggmen; grumfeld; blogspot; call me at; we have archived; cannot display the webpage
Thanks
welcome :)
Name:
Anonymous2010-05-24 22:56
>>290
Works perfectly now. Thank you so much for all you've done. I don't know how I can make it up to you man. You are awesome :) Please, don't ever stop what you're doing, because you are that cool! :)
I know, I'm being a big suck-up, but I truly am grateful, and so are the people who can now finally and properly ignore this shitposter.
Name:
Anonymous2010-05-25 3:22
>>159
i can't seem to see that comment you said about reverse filters, i never bothered to remember it and it seems i have use of it right now, temporarily anyway.
Name:
aeosynth!zdxFBW2hCw2010-05-25 5:42
>>292
yeah, it is gone. to only see posts with the phrase 'banana banana banana', use:
I was thinking about the text boards with their extra white space.
Name:
Anonymous2010-05-27 23:57
does 4chan X somehow hides threads automatically?
4chan X allows you to manually hide whole threads.
4chan filter only allows you to manually hide comments in these threads unless it's hidden by the automatic filter function.
somehow, some threads don't show up when i click "show"
a few remain hidden as if they were hidden using 4chan X, the show function doesn't show the threads i hide using 4chan X.
it's not possible to show what stuff i hidden using 4chan extension right now right?
other than disabling the script and refreshing of course.
one thing that came to mind is that the thread that is hidden is on another page.
Name:
Anonymous2010-05-28 0:01
does 4chan X somehow hides threads automatically?
4chan X allows you to manually hide whole threads.
4chan filter only allows you to manually hide comments in these threads unless it's hidden by the automatic filter function.
somehow, some threads don't show up when i click "show"
a few remain hidden as if they were hidden using 4chan X, the show function doesn't show the threads i hide using 4chan X.
it's not possible to show what stuff i hidden using 4chan extension right now right?
other than disabling the script and refreshing of course.
one thing that came to mind is that the thread that is hidden is on another page.
Name:
Anonymous2010-05-28 6:33
Does anyone know how to decrypt the contents of the md5 attribute? It looks like Base64 but I get gibberish when I try unencoding it.
Name:
Anonymous2010-05-28 7:04
Okay, figured it out, but I realized that it's for the thumbnail. :/
Name:
Anonymous2010-05-29 17:51
I've been noticing that on chromium, if I hide a thread and it happens to be the first thread on the first page, it'll instead hide the first thread of that page instead.
For example lets say I go to /g/ and see that the first thread on the first page is some troll posting guro. I hide it and refresh the page, and whether that thread is still the first or not, the first thread will be hidden.
I'm assuming it's a problem with chromium, but thought I'd let you know, in case you didn't.
:\
Name:
Anonymous2010-05-29 20:01
>>299
I've seen the same thing.
Which version of chromium are you running?
(^|\D) - start at the beginning, or at a non-digit character
0* - allow 0 or more leading zeros
([1-9]\d{0,2}|1000) - match the numbers 1-9, followed by 0-2 other numbers; or match 1000
($|\D) - end at the end, or at a non-digit character
Would you consider adding the 4chan menu to 4chan X like in the 4chan add-on? If no, how about a standalone userscript?
Name:
Anonymous2010-06-01 9:18
I just updated to the newest version of 4chan X by uninstalling the pervious one and installing the newest one. It retained my watchlist but broke the links to the threads and I'm unable to delete the broken links.
What do?
Name:
aeosynth!zdxFBW2hCw2010-06-02 2:08
>>306
uninstall, this time checking 'also uninstall assosciated preferences'. you could also go to about:config and reset 4chan x.watched (I assume you're using ff / gm).
>>305
greasemonkey can't modify the browser, so I can't add stuff to the right-click / toolbar menu. I could create an in-browser pop-up that listed all the boards, or you could get a userstyle that makes the board links follow you.
I never really used that feature in the first place, so I don't know what the best way of implementing it is.
>>301
4chan x works fine in chrome 6, chrome/chromium 4 is known to be buggy.
>>296
yeah, i need to re-add the 'clear hidden' option.
Name:
Anonymous2010-06-02 12:40
>>307
Unfortunately I'm using Chrome 6.0.408.1 dev, so no Greasemonkey or about:config
Invade Yahoo! Answers.
Instead just post statements and tell everybody they are too interfering and should stay out of other peoples business and in general not to ask questions.
Yours truly the Mafia,
- Not really - if this is the CIA - I'm not really the Mafia.
Name:
aeosynth!zdxFBW2hCw2010-06-05 3:16
>>313
yeah, they were trolling you. what you need to do is find the ranges of all those character sets, either online or from digging through a character map. then you can easily filter them out - you'll end up with something like [\u2004-\u2500] (filter everything with a unicode value between 2004 and 2500). you're on your own when it comes to finding the ranges, but if you do, post them here so others can benefit.
I have eight of these entries. The difference between them is the value for "Invalid value for property" which alternates between "left" then "top" then "left" and so forth.
Could someone please help me hide the latest kimmotalk spam?
It looks like the address of his shitty site separated in [square brackets] with gibberish in between
I tried this
[[anon\]*[talk\]]
but it blocked all posts
I'm not very good with this so help appreciated
It'd be great if there was a guide to all the filtering syntax
>>334
Well, I'll just throw it out anyways http://userscripts.org/scripts/show/43288
is able to search all threads throughout the 15 pages for last.fm threads. Maybe you could modify it so that users could input a query into an text box and search specific threads.
Name:
aeosynth!zdxFBW2hCw2010-06-13 19:57
>>336
that sounds pretty cool, but there's already an (admittedly old) script that combines all 10 pages into one. you could combine that with the filter to find all threads matching an arbitrary regex.
Name:
Anonymous2010-06-14 19:08
>>334
Oh.
I was about to make a post to ask what: re-add button to clear hidden posts.
meant.
Is it possible to have a comment on filters? Something like "5 KB, 251x251 //Slowpoke combo" would mean a lot more to me than just "5 KB, 251x251".
Keep up the excellent work.
Name:
Anonymous2010-06-20 19:32
#342 here. I'd also like to report that 4chan X's thread-hiding "[-]" link only shows up on the top thread, so I'm temporarily using the one from the 4chan Firefox extension.
>>343
browser, version, error console info - i needs them.
also, disable your other extensions / scripts, and disable every 4chan x option except thread hiding.
Name:
Anonymous2010-06-21 12:59
>>344
It turns out the 4chan extension is what was causing it to fail. As soon as I disabled that, everything worked perfectly.
I need to learn how to make scripts. It would help if they updated Platypus.
Name:
aeosynth!zdxFBW2hCw2010-06-21 17:41
>>345 I need to learn how to make scripts. It would help if they updated Platypus.
Reading generated code is never fun, and if you want to learn scripting, you have to read and write code. If you do learn, send me patches!
Name:
Anonymous2010-06-22 0:25
http://userscripts.org/scripts/show/70646
This is the best script of its kind, but it doesn't work with the 4chan X updater. So, if you ever feel like continuing a cool script that doesn't seem to be updated anymore, that's the one.
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.
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.
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.
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.
Name:
!!eAxtif8BAC/zmcg2012-01-19 22:14
test
Name:
iamafag!!SzvMcR3bumR/z532012-01-19 22:15
test
Name:
Anonymous2012-01-31 15:43
can't seem to quick replay anymore
everytime i try, there's no submit button
only one that says "loading" http://tinypic.com/r/el19j7/5
Name:
Anonymous2012-03-18 23:11
Having troubles using the new 4chan X to filter things. Used to be I could put in /item/ and it'd filter, but now, no clue how to get it to get it to filter, and the info doesn't help.
"You can use these settings with each regular expression, separate them with semicolons:
Per boards, separate them with commas. It is global if not specified.
For example: boards:a,jp;.
Filter OPs only along with their threads (`only`), replies only (`no`, this is default), or both (`yes`).
For example: op:only;, op:no; or op:yes;.
Highlight instead of hiding. You can specify a class name to use with a userstyle.
For example: highlight; or highlight:wallpaper;.
Highlighted OPs will have their threads put on top of board pages by default.
For example: top:yes or top:no."
Name:
Name:
Anonymous2012-04-09 0:43
Feature request:
Filter picture only posts. Someone is plaguing the threads I frequent with spam, it would be awesome if 4chan x could be set to automatically hide posts that are picture only.