Comments by jerone on scripts

111 comments

Comment on:
Times they are a changing

Oct 10, 2008

User scripts for IE: IE7Pro(IEscripts database & IEscripts tutorial)

Comment on:
Times they are a changing

Oct 8, 2008

A lot of changes, a big step in the good direction.
I think some of them needs to be getting used to.
And a lot of scripts probably needs updates. :p

I've got a small suggestion; change "home" into "profile". Home means something different with what you're trying to define here.

Some other suggestion you mite consider.

Comment on:
Voting on comments

Oct 8, 2008

A lot of changes, a big step in the good direction.
I think some of them needs to be getting used to.
And a lot of scripts probably needs updates. :p

Comment on:
userscripts.org alternate CSS

Oct 4, 2008

Firefox 3 with GreaseMonkey. You don't have this weird border?

Comment on:
userscripts.org alternate CSS

Oct 4, 2008

Free Image Hosting at www.ImageShack.us
Any other userscripts are disabled :(

Comment on:
userscripts.org alternate CSS

Oct 4, 2008

You really should add the code below, because their ain't a border.
And why script name 90%?

Comment on:
userscripts.org alternate CSS

Oct 3, 2008

I've got an addition for "http://userscripts.org/scripts/edit/*":

document.getElementById("script_summary").style="width:100%;";

You'll see that this is the best method, then when you try it with CSS only.

Comment on:
userscripts.org Favourites

Oct 1, 2008

I need to add z-index:9999; to #favourites as style to get I above the metadata.

Comment on:
userscripts.org alternate CSS

Oct 1, 2008

Thats true, but people can use their middle-mouse for navigation.

Comment on:
userscripts.org alternate CSS

Oct 1, 2008

...but overflow-x:auto; is not a good idea on sources with a lot of rows.
Why not?

Comment on:
userscripts.org alternate CSS

Sep 30, 2008

I like this script.
And I've got an addition; add overflow-x:auto; to the pre-tag on the source page of a script, for scripts with long content (like yours).

Comment on:
Voting on comments

Sep 29, 2008

I'm liking the new change.
But I don't understand why the comment isn't fully width and stuck on 460px.

Comment on:
Multiple Windows Live ID's

Sep 23, 2008

OK thnx, Spanish translation is updated.
If you're willing to translate more...

Comment on:
Userscripts : Watch script

Sep 23, 2008

Interesting, but what has this script what this script doesn't have?

Comment on:
Multiple Windows Live ID's

Sep 23, 2008

Hey, since your last comment i've got some new ones for you to translate before I release the new scripts:

				'left'			: 'Left',
				'right'			: 'Right',
				'unknown'		: 'Unknown',
				'unknown'		: 'unknown',

Comment on:
Multiple Windows Live ID's

Sep 18, 2008

@sanosuke. Thank you so much, you're the first one who translated my script.
Before I release this script with the new translation, I have to get 2 things:

  • the short language name referring your country (e.g. "en" for English, "nl" for Dutch). You could get this info from the following code: window.navigator.language which you could execute in Firebug. It probably ganna be "es", but I'm need to be sure to get it working.
  • secondly, translating this script isn't enough. :( There'd more strings which this script uses on US_language. Please have a look at that script and post your translation.
If I've got above info, I'll immediately release the new update with some bug fixes which I found adding your translation there too. :p

p.s. Please post your findings in a <blockquote></blockquote> or <pre></pre> block.

Comment on:
FindScripts

Sep 17, 2008

New userscript based on this idea.

Comment on:
FindScripts

Sep 17, 2008

New userscript based on this idea.

Comment on:
FindScripts

Sep 17, 2008

New userscript based on this idea.

A small addition for people who use this script and use another script that implents an iframe;
change the first code line to:

if((node=$x("id('content')/h1/text()")).length<=0)return;
var yourscripts = ( trim(node[0].data) == 'Your scripts' );

Comment on:
Userscripts Updater

Sep 13, 2008

Apparently Stylish is loaded after GreaseMonkey. And because that stylish script also uses !important, thats the latest that will be used.
What you can do is put the getCSS in a timeout, so it loads after Stylish:

window.setTimeout(
    function(){
        getTag('head')[0].appendChild(getCSS());
    }
,1);

And the last addition I wrote (with the try catch) needs to rotate. getElementsByTagName('body')[0] makes making new elements slower and should be as backup.

Comment on:
Userscripts Updater

Sep 12, 2008

No problems here.

@MindTwister, because lately ther're a lot of updates for this script, which includes bug fixes or new features (a good thing thus).

Comment on:
Userscripts Updater

Sep 12, 2008

lazyttrick, you could use something like this to make it site compatible;

var node;
try{
    node = document.getElementsByTagName('body')[0].createElement(type);
}catch(e){
    node = document.createElement(type);
}
You need to test it some dho.

Comment on:
Userscripts Updater

Sep 11, 2008

Thnx lazyttrick. Solved that problem. There wasn't even the need to re-add. Good Work.

The solution for the new problem people having, change line 854 back to:

var node = document.createElement(type);

To fix weird colors on other pages, you could use an iframe. For my own script US_options I choose an iframe because of heritage from other scripts. In an iframe you don't have the site inheriting.
If you don't want to use an iframe, you should add !important at the end of each css rule.

Comment on:
Userscripts Updater

Sep 11, 2008

You're on a roll.

Maybe you can look at this. Userscripts that contain "Userscripts.org" in their name are wrongly named in the list (e.g. 8037, 11400, 33084).

I do like the clicking on the names to go to their home, but I prefer a home button.

Another suggestion would be an option to scan only on Userscripts.org itself.

Just improving a great script.