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: aeosynth !zdxFBW2hCw 2010-02-23 5:11

>>40
wow that's some ugly code. try this:
// ==UserScript==
// @name           dis.4chan.org filter
// @namespace      aeosynth
// @include        http://dis.4chan.org/*;
// ==/UserScript==

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

Name: aeosynth !zdxFBW2hCw 2010-02-23 5:19

>>41

// @copyright      2010, James Campos
// @license        WTFPL; http://sam.zoy.org/wtfpl/

/* 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: Anonymous 2010-02-23 9:48

>>41
Cheers. How do I get this bookmarklet to work on imagefap?


javascript:(function(){function%20I(u){var%20t=u.split('.'),e=t[t.length-1].toLowerCase();return%20{gif:1,jpg:1,jpeg:1,png:1,mng:1}[e]}function%20hE(s){return%20s.replace(/&/g,'&amp;').replace(/>/g,'&gt;').replace(/</g,'&lt;').replace(/"/g,'&quot;');}function%20U(a){var%20r=[];o:for(var%20i=0,n=a.length;i<n;i++){for(var%20x=0,y=r.length;x<y;x++){if(r[x][0]==a[i][0])continue%20o;}r[r.length]=a[i];}return%20r;}var%20q,h,i,z=open().document;var%20a=[];z.write('<style%20type="text/css">img{max-width:100%}</style>'/*+'<p>Images%20linked%20to%20by%20'+hE(location.href)+':</p><hr>'*/);for(i=0;q=document.links[i];++i){h=q.href;if(h&&I(h))a.push([hE(h),q.innerHTML]);}a=U(a);for(i=0;q=a[i];++i){z.write('<p>'/*+q[1]%20--dangerous%20innerhtml--%20+'%20('+q[0]+')<br>'*/+'<img%20src="'+q[0]+'">');}z.close();})()

Name: Mr.KonataIzumi(¯◡◡¯·) !hKVgwdyGeM 2010-02-23 13:27

So why is this shit happening? http://grab.by/2CwF

Happens whenever I click a post number link -- either the "no." link, the actual post number, or >>one of these.

Sanku for your help and awesome extension :3

Name: Mr.KonataIzumi(¯◡◡¯·) !hKVgwdyGeM 2010-02-23 13:28

>>44

For reference, I'm on Chrome Mac 5.0.322.2 dev.

Name: Mr.KonataIzumi(¯◡◡¯·) !hKVgwdyGeM 2010-02-23 13:30

Fuck, ignore the last couple posts, uninstalling 4chan Time did the trick. Should have tried that first.

Name: aeosynth !zdxFBW2hCw 2010-02-23 13:43

>>46
The order the scripts are executed in matters. which can be confusing and really sucks.

>>43
idunnolol.

Name: Anonymous 2010-02-24 5:39

dont u think that your filter causes less moderation because less spam is reported?

Name: aeosynth !zdxFBW2hCw 2010-02-24 7:04

>>48
probably. I wish 4chan automatically filtered reported posts, but it doesn't.

Name: Anonymous 2010-02-25 8:30

bump

Name: Anonymous 2010-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 !zdxFBW2hCw 2010-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.

you can find more info on regexes at https://developer.mozilla.org/en/Core_JavaScript_1.5_Guide/Writing_a_Regular_Expression_Pattern.

Name: Anonymous 2010-02-25 13:49

>>52
Ok so if I wanted to filter say the string "/k/" I would enter this in the script?

"/\/k/\/"

Name: aeosynth !zdxFBW2hCw 2010-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: Anonymous 2010-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 !zdxFBW2hCw 2010-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?

Name: Anonymous 2010-02-27 4:58

>>56
Yeah it does.

Name: Anonymous 2010-02-28 8:48

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: Anonymous 2010-02-28 12:34

What are chances of you developing a mini 4chan X for the text boards?

Name: aeosynth !zdxFBW2hCw 2010-02-28 19:03

>>60
trip + subject filtering should be fixed now.

Name: Anonymous 2010-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: Anonymous 2010-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 !zdxFBW2hCw 2010-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.

Name: Anonymous 2010-03-01 4:35

\begin{array}{c}F\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\ U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U \\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\\U\end{array}

Name: Anonymous 2010-03-04 19:31

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 !zdxFBW2hCw 2010-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 !zdxFBW2hCw 2010-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: Anonymous 2010-03-11 9:20

Would you consider porting 4chanX to work on 420chan ?

Name: aeosynth !zdxFBW2hCw 2010-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: Anonymous 2010-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 !zdxFBW2hCw 2010-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.

Name: Anonymous 2010-03-11 23:49

>check for update
>"global default" option

OH GOD YES.

Name: Anonymous 2010-03-12 2:44

>>73
QUOTE FAILURE

OH GOD NO.

Name: aeosynth !zdxFBW2hCw 2010-03-12 5:11

>>73
:). there was actually a bug with 'global default' that prevented it from saving filters, I updated the script just now to fix it.

>>74
got a bit lazy there with the nested spoilers, eh?

Name: Anonymous 2010-03-12 20:47

>>75
got a bit lazy there with the nested spoilers, eh?
No actually, that was the intended effect.

Name: aeosynth !zdxFBW2hCw 2010-03-12 21:08

>>76
hm, my preference would be to reveal the second word after the last letter of the first, not on.

like this

Name: aeosynth !zdxFBW2hCw 2010-03-12 21:12

>>77
like this

Name: Anonymous 2010-03-13 17:46

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 !zdxFBW2hCw 2010-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.

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