Comments by simon! on scripts
125 comments
|
Comment on: |
לוֹל, חתול מייאוו... ח-ת-ו-ל-ה ^_^ ראיתי אותך ב- איי.אר.סי מוזילה ישראל טוב אז... את מה כדאי יותר להתקין? cast upper / 103FM Live ?? |
|
Comment on: |
nope! see this page, the clock spreads all over. |
|
Comment on: |
You really MUST to fix this script! see this page. |
|
Comment on: |
Here's an animation (Animated PNG - aPNG) |
|
Comment on: |
You might want to try Quick TransLation (qtl) |
|
Comment on: |
This script is Out-of-Date. I'll leave this script here for reference. Thank you tomo.snowbug. |
|
Comment on: |
Thanks, tomo.snowbug. I'll leave this script for reference. |
|
Comment on: |
Hey Johan! line 210
Please give some credits to znerp Thanks. |
|
Comment on: |
Hey Diogo! line 46
Please give some credits to znerp Thanks. |
|
Comment on: |
I think he want to keep these script (if the original author will delete a script...) |
|
Comment on: |
use one of these:
|
|
Comment on: |
Please replace the current icons... |
|
Comment on: |
Give a better support for Firefox3 please. |
|
Comment on: |
Please add support for Google i&Search Dark + Enhancements v1.7.7 Thanks! |
|
Comment on: |
Way to go brother!!! |
|
Comment on: |
Interesting. |
|
Comment on: |
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: |
תודה רבה על כל הטרחה כל הכבוד לך אחותי :D |
|
Comment on: |
@chasep2001
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: |
Any time :) |
|
Comment on: |
A great idea :) Way to go! |
|
Comment on: |
Interesting... who can make a script for it (an actual one) |
|
Comment on: |
Chipmark support, please :)
Thanks! |
|
Comment on: |
a) try to build one for index pages more info...
p/s. nice enhancements :D |
|
Comment on: |
http://userscripts.org/forums/1/topics/2270
// ==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);
}
}
|

