Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

userscript support throd

Name: aeosynth !zdxFBW2hCw 2010-02-14 21:28

instead of registering on us.o just to make one post, you can use this thread. questions, comments, feature requests, patches are all fine.

I'll provide support for everything listed at http://userscripts.org/users/64431/scripts.

Name: =+=*=F=R=O=Z=E=N==V=O=I=D=*=+ 2010-04-26 19:59

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

Name: aeosynth !zdxFBW2hCw 2010-04-27 1:36

>>202
fixed regression

Name: Anonymous 2010-04-27 4:04

I've noticed that when the thread updater has problems fetching the page, it increments the countdown till next update instead of retrying.

I have a shitty internet connection so this happens to me a lot through the day.

Please fix it.

Name: Anonymous 2010-04-27 4:33

Also, the empty icon is 14x13 instead of 16x16 which causes the input button and name next to it to be moved slightly

data:image/gif;base64,R0lGODlhEAAQAJEAAAAAAP///9vb2////yH5BAEAAAMALAAAAAAQABAAAAIvnI+pq+D9DBAUoFkPFnbs7lFZKIJOJJ3MyraoB14jFpOcVMpzrnF3OKlZYsMWowAAOw==

smaller and in the right size

Name: aeosynth !zdxFBW2hCw 2010-04-27 4:51

>>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.

>>205
could you make that a png?

Name: Anonymous 2010-04-27 6:06

>>202
fake void is fake

Name: Anonymous 2010-04-27 9:36

feature requests:
Add EXIF links for .jpg images (uses regex.info web service), archive and iqdb links

these are all features from darkhaunter's fychan mod.

Name: Anonymous 2010-04-27 18:40

>>208
http://userscripts.org/scripts/show/55371

>>206
Not sure why you'd want a png version, but here:
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAgMAAABinRfyAAAACVBMVEUBAAAAAADb29tmCTDaAAAAAXRSTlMAQObYZgAAADxJREFUaN5jYIADVgfGAAapCWxLGNiWSE1gkFoitYSBNYA1gAEJBLAyMDAukXKAKIEQKZITGBgFWBzACgCbuwrJS57qoQAAAABJRU5ErkJggg%3D%3D

Name: Anonymous 2010-04-27 18:42

>>209
%3D%3D -> "=="

Name: aeosynth !zdxFBW2hCw 2010-04-28 6:30

>>160
I've got arbitrary classes working. Copy the [header] and [body] into a file, 'foltor.user.js', then open it with firefox and greasemonkey should install it.
[header]: http://github.com/aeosynth/4chon/raw/master/foltor/header
[body]: http://github.com/aeosynth/4chon/raw/master/foltor/foltor.js

to make a whitelist:

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'

get stylish - https://addons.mozilla.org/en-US/firefox/addon/2108
write new style for boards.4chan.org:
@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("boards.4chan.org") {
.whitelist {
  display: block !important;
}
}

save


and there you have it. you can add arbitrary classes / css. here are some references:
https://developer.mozilla.org/en/CSS_Reference
http://www.w3schools.com/CSS/css_reference.asp

Name: Anonymous 2010-04-28 18:45

<i>We are currently being hit with 6000 requests a second.. sorry, I cannot keep the servers up for that amount of load.</i>
DAMN...

Name: aeosynth !zdxFBW2hCw 2010-04-28 20:28

>>212
haha yeah. 4chan x and the filter rewrite are hosted on github, though.

>>209
>>205
pngs are supposed to compress better than gifs - http://en.wikipedia.org/wiki/Portable_Network_Graphics#Compared_to_GIF
anyway, I've updated 4chan x (on github) with the gif.

Name: Anonymous 2010-04-28 20:28

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: Anonymous 2010-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: Anonymous 2010-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?

Name: Anonymous 2010-04-28 23:49

>>216
Also, the front page lags for like 3 seconds if thread hiding is enabled. If disabled, the posts don't jump around and no lag happens.

Name: Anonymous 2010-04-29 3:41

>>209
just add archive link then?

Name: Anonymous 2010-04-29 7:18

>>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');

            var newnode = document.createElement('span');
            newnode.innerHTML = ' [<a href="http://archive.easymodo.net/cgi-board.pl/' + myFychan.boardname + '/image/' + md5 + '" target="_blank">archive</a>]';
            row.appendChild(newnode);
        }
    },

Name: aeosynth !zdxFBW2hCw 2010-04-29 8:35

>>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.

Name: Anonymous 2010-04-29 22:07

New filter update breaks thread updater.

Name: Anonymous 2010-04-29 22:09

>>222
Disregard that.

Name: Anonymous 2010-04-30 19:25

Can you fix this ya4cie bug
http://imgur.com/DG09Y.png

Name: Anonymous 2010-04-30 22:02

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.

http://i39.tinypic.com/i38jl3.png

Name: aeosynth !zdxFBW2hCw 2010-04-30 22:32

>>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).

Name: Anonymous 2010-05-01 1:29

>>226
Damn! Well, I appreciate it anyway. Thanks.

Name: Anonymous 2010-05-02 16:28

is it possible to reverse auto time so i can troll threads i dislike more easily?

Name: aeosynth !zdxFBW2hCw 2010-05-02 21:59

>>228
reverse auto time

I'll add -F to select only posts w/o images; I think that's what you want.

so i can troll threads i dislike more easily

whywouldyoudothat.jpg

>>226
if there are any flash devs here, would it be possible to use flash as a cross-domain storage solution?

Name: Anonymous 2010-05-04 0:11

>>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: Anonymous 2010-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: Anonymous 2010-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: Anonymous 2010-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: Anonymous 2010-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: Anonymous 2010-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: Anonymous 2010-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 !zdxFBW2hCw 2010-05-07 20:06

>>237
another way to clear localstorage
ctrl+shift+j > storage, delete everything under boards.4chan.org.

disable your other scripts and test it.

Name: aeosynth !zdxFBW2hCw 2010-05-07 20:06

>>236
confirmed

Name: Anonymous 2010-05-07 22:44

>>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?

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List