Comments on Richard Gibson's Scripts

81 comments

Comment on User Script Updates made Aug 12, 2008:

s33k3r

I have the same problem as nathaniel_higgins. Is there some way to fix this or are we doing something wrong?

Comment on User Script Updates made Jul 5, 2008:

nathaniel_higgins

It keeps putting up this dialog box every time I visit a page with FF3

"A user script has requested automatic update checks:

name: User Script Updates

namespace: http://userscripts.org/people/336

description: Checks for updated versions of user scripts that request it, and

notifies the user of their existence.

homepage: http://userscripts.org/scripts/show/2296

location: http://userscripts.org/scripts/source/2296.user.js

version: 0.3

date: Tue Jun 20 2006

Allow?"

It gets very annoying

Comment on User Script Updates made Jul 3, 2008:

Razalduria

Same here (FF3).

Error-Console:

Fehler: Greasemonkey access violation: unsafeWindow cannot call GM_setValue.

Comment on eBay Auction Enhancer made Jun 30, 2008:

fauxmccoy

have used this for quite some time, but does not appear to be working recently :(

Comment on User Script Updates made Jun 23, 2008:

3d0xp0xy

I'm having the same problem as Alvin on Fx 3.0.

Comment on User Script Updates made Jun 18, 2008:

Matrix0191

can someone please fix this to work in FF 3 Please

Comment on Element Resizer made Jun 5, 2008:

xafwodahs

I went from FF2 to FF3rc2, and this script seems broken now :( Resizing text boxes seems very chaotic, if it works at all. I always used this script as an example when telling people why Firefox was so cool. Hopefully, a fix will appear eventually.

Comment on User Script Updates made May 19, 2008:

Alvin

Unfortunately, it seems borked in FF 3.0RC1 ... It spams me constantly (every couple of minutes) requesting update access for itself - and once it even popped up about 5 boxes and I had to click OK 5 times - all for permission to update itself.

Borked.

Comment on Element Resizer made May 10, 2008:

private_lock

Won't work in FF 3.0beta5 anymore :-(

On first mouse over the element is ripped from the pageflow, obscuring following elements behind it. No matter where you drag the markers, the textbox will stay fixed in size and only move over the page along with the upper left corner.

Comment on User Script Updates made May 9, 2008:

Piotr P. Karwasz

M0rph3u5: the script still works, at least for me.

Richard: All the scripts I develop use yours for updates. Thank you very much.

If you ever care to update the list of scripts that use your, here is the list:

Comment on eBay Auction Enhancer made Apr 25, 2008:

Hanjo

Thanks jwo, it's working for me :-)

But it have been lines 412/413 on my source...

Comment on Free NYT made Apr 1, 2008:

khopesh

Note, this still requires cookies.

Comment on User Script Updates made Mar 26, 2008:

M0rph3u5

dunno it aint showin on grease mokey user script commands :( for me

Comment on User Script Updates made Mar 10, 2008:

jiaminn212

is this script still working?

Comment on User Script Updates made Mar 7, 2008:

Respect

i can't make updates to my scripts...

i have to change something in source of script?

it donesn't updates nothing :´(

Comment on eBay Auction Enhancer made Feb 26, 2008:

jwo

Hi, at the german eBay-Site, the script will only work for 'buy it now'-articles.

There seems to be a problem at line 433 / 434. The properties 'textContent', 'innerHTML' and 'nodeValue' may all be null at regular auction-articles pages which will cause an exception.

The following code fixed the problem for instance:

var enter = false;

if(endTimeNode != null)

{

if(endTimeNode.textContent != null)

{

endTimeREMatch = END_TIME_RE.exec((endTimeNode.textContent).replace(SPACE_RE, " "));



if(endTimeREMatch != null)

{

enter = true;

}

}

if(enter == false && endTimeNode.innerHTML != null)

{

endTimeREMatch = END_TIME_RE.exec((endTimeNode.innerHTML).replace(SPACE_RE, " "));

if(endTimeREMatch != null)

{

enter = true;

}

}



if(enter == false && endTimeNode.nodeValue != null)

{

endTimeREMatch = END_TIME_RE.exec((endTimeNode.innerHTML).replace(SPACE_RE, " "));



if(endTimeREMatch != null)

{

enter = true;

}

}

}

if(enter){

while (endTimeNode && endTimeNode.nodeType !=

...

Comment on eBay Auction Enhancer made Feb 24, 2008:

VzjrZ

I don't know how but it now works for me...

Comment on eBay Auction Enhancer made Jan 8, 2008:

pandaking

Dead for me also...

Comment on eBay Auction Enhancer made Jan 7, 2008:

LenR

broken. i'd love to see it though.

Comment on User Script Updates made Oct 23, 2007:

Heidi

I like that I can use this to add all the URLs for the scripts I've installed, but I wish that doing so were a bit easier.

Perhaps a keyboard shortcut for adding the URLs?

I know it's not meant to be used this way, but I prefer to use it this way so I'm ensured I'll get the updates whenever they come in :$

Comment on eBay Auction Enhancer made Oct 19, 2007:

Brian Quigley

Yea, doesn't work for me anymore either... hah I sure put some good use to it though :P

Comment on User Script Updates made Oct 10, 2007:

gabedibble

Also compatible with Google i&Search Dark + Enhancements (http://userscripts.org/scripts/show/12917); ENJOY!

Comment on eBay Auction Enhancer made Sep 15, 2007:

Chris Bartlett

Hello. Thought I'd report that the script hasn't worked for me (on two machines I have it installed on) for two weeks now. Is this happening to anyone else?

Comment on Element Resizer made Sep 13, 2007:

brasilius

thanx for a great script

really helps

решение задач по предмету высшая математика

Comment on User Script Updates made Aug 24, 2007:

Sean Watson

I removed support for this from my script. I have seen no proof that it works, so I removed the useless code