endflow.net blog

/* programming and programming */

Archive for June, 2008

Flickr Activate In-Place Editing for AutoPagerize

without comments

/* How does it work ? */

This Greasemonkey script activates in-place editing of the pages loaded by AutoPagerize.
flickr_ap
Read the rest of this entry »

Written by kuy

June 21st, 2008 at 1:50 am

Posted in Uncategorized

Tagged with , , ,

LDR Ad-Entry Blocker supports fLDR

without comments

/* LDR Ad-Entry Blocker */

supports fLDR.
LDR Ad-Entry Blocker [Userscrips.org]
I’ve checked it on Firefox 3.0 (GM 0.8) and Opera 9.5.

/* Reason */

The “contain” function that embedded in LDR on line 3 always return “false”.

titles.each(function(title){
    cfg.patterns.each(function(rx){
        if(contain(title.innerHTML, new RegExp(rx))){

So I fixed:

titles.each(function(title){
    cfg.patterns.each(function(rx){
        if((new RegExp(rx)).test(title.innerHTML)){

Like that.

/* Conclusion */

I thought that I shouldn’t use embedded functions.
However, I already made this using a lot of embedded functions. lol
Thank you “you”-san for reporting this issue.

enjoy LDR! ;)

Written by kuy

June 20th, 2008 at 12:38 am

Posted in Uncategorized

Tagged with , , , , , ,

NicoVideo My Ranking: Replace with your favorite ranking page

with 2 comments

/* How does it work ? */

This Greasemonkey script replaces the link of default ranking page with your favorite ranking page on NicoVideo (ニコニコ動画).

nvmyranking

In these weeks, I check the ranking page “Game, View, Daily” frequently. So I have to move 2 times from default ranking page “All, MyList, Daily” for this.
Read the rest of this entry »

Written by kuy

June 3rd, 2008 at 12:25 am

Posted in Uncategorized

Tagged with , , ,