Comments by simon! on scripts

125 comments

Comment on:
cast upper

Jul 22, 2008

לוֹל, חתול

מייאוו... ח-ת-ו-ל-ה ^_^

ראיתי אותך ב- איי.אר.סי מוזילה ישראל

טוב אז... את מה כדאי יותר להתקין?

cast upper / 103FM Live ??

Comment on:
showClock

Jul 8, 2008

nope! see this page, the clock spreads all over.

Comment on:
showClock

Jul 7, 2008

You really MUST to fix this script!

see this page.

Comment on:
BugMeNot

Jun 26, 2008

Here's an animation (Animated PNG - aPNG)

aPNG

Comment on:
imageLoader

Jun 23, 2008

You might want to try Quick TransLation (qtl)

Comment on:
imageLoader

Jun 23, 2008

This script is Out-of-Date. I'll leave this script here for reference.

Thank you tomo.snowbug.

Comment on:
imageLoader

Jun 23, 2008

Thanks, tomo.snowbug. I'll leave this script for reference.

Comment on:
Instant Gallery

Jun 23, 2008

Hey Johan!

line 210
replace bigimg.style.background = 'red';
with bigimg.style.background = 'transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGElEQVQYV2N4DwX/oYBhgARgDJjEAAkAAEC99wFuu0VFAAAAAElFTkSuQmCC") repeat scroll 0% 0%';

Please give some credits to znerp

Thanks.

Comment on:
Explode Thumbs

Jun 23, 2008

Hey Diogo!

line 46
replace background = 'white';
with background = 'transparent url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAAAAAA6mKC9AAAAGElEQVQYV2N4DwX/oYBhgARgDJjEAAkAAEC99wFuu0VFAAAAAElFTkSuQmCC") repeat scroll 0% 0%';

Please give some credits to znerp

Thanks.

Comment on:
Google Auto Pager

Jun 22, 2008

I think he want to keep these script (if the original author will delete a script...)

Comment on:
LinkThumb

Jun 22, 2008

use one of these:
chrome://global/skin/icons/loading_16.png
chrome://browser/skin/places/searching_16.png

Comment on:
imageLoader

Jun 22, 2008

Please replace the current icons...

http://userscripts.org/scripts/show/28958

Comment on:
Explode Thumbs

Jun 20, 2008

Give a better support for Firefox3 please.

Comment on:
Google Harry

Jun 20, 2008

Please add support for Google i&Search Dark + Enhancements v1.7.7

Thanks!

Comment on:
Bad Guy Sticker

Jun 17, 2008

Way to go brother!!!

Comment on:
Resize images icon

Jun 17, 2008

Interesting.

Comment on:
Flash Sourcer 1.0

Jun 17, 2008

Try here the script only shows http://www.ucsusa.org/global_security/nuclear_w... but not http://www.ucsusa.org/global_security/nuclear_w...

more info: http://userscripts.org/forums/1/topics/2287

Comment on:
Hebrew ToolTip Translation

Jun 17, 2008

תודה רבה על כל הטרחה

כל הכבוד לך אחותי :D

Comment on:
Cruiser

Jun 17, 2008

@chasep2001
Thank you for the help, but it is not working, at least for me :S

You're talking about lines 64 - 65, right?

I saw what the bookmarklet does and it reminds me that maybe some code from this script could be helpful in building a button?

Comment on:
Inline Mp3 Player (Button)

Jun 15, 2008

Any time :)

A great idea :)

Way to go!

Comment on:
Animated Scraps! for Orkut

May 26, 2008

Interesting... who can make a script for it (an actual one)

Comment on:
fav.icio.us2

May 24, 2008

Chipmark support, please :)
http://userscripts.org/forums/1/topics/2415

Thanks!

Comment on:
Cruiser

May 10, 2008

a) try to build one for index pages more info...
b) please give supply us a button to start this script, so this won't start automatically (similar to the script that I just mentioned)

p/s. nice enhancements :D

Comment on:
Remove Chipmark Sidebar

May 2, 2008

http://userscripts.org/forums/1/topics/2270
http://userstyles.org/styles/6863

// ==UserScript==
// @name          Remove Chipmark Sidebar
// @namespace     http://userstyles.org
// @description	  This script takes off the left Chipmark sidebar from the "chipmark :: manage" page https://www.chipmark.com/Manage
// @author        crash
// @homepage      http://userstyles.org/styles/6863
// @include       https://www.chipmark.com/Manage
// ==/UserScript==
var css = "@namespace url(http://www.w3.org/1999/xhtml); td[style=\"width: 200px;\"] { display: none }";
if (typeof GM_addStyle != "undefined") {
	GM_addStyle(css);
} else if (typeof addStyle != "undefined") {
	addStyle(css);
} else {
	var heads = document.getElementsByTagName("head");
	if (heads.length > 0) {
		var node = document.createElement("style");
		node.type = "text/css";
		node.appendChild(document.createTextNode(css));
		heads[0].appendChild(node); 
	}
}