Archive for June, 2008
Flickr Activate In-Place Editing for AutoPagerize
/* How does it work ? */
This Greasemonkey script activates in-place editing of the pages loaded by AutoPagerize.

Read the rest of this entry »
LDR Ad-Entry Blocker supports fLDR
/* 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!
NicoVideo My Ranking: Replace with your favorite ranking page
/* How does it work ? */
This Greasemonkey script replaces the link of default ranking page with your favorite ranking page on NicoVideo (ニコニコ動画).

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 »