Recent posts

Subscribe to Recent posts 49159 posts

4 hours ago
Jefferson Scher 1176 posts

Topic: Userscripts.org discussion / The "Last update" date is changed when the script description is edited

This has been happening for a few months, I think. I can't remember the change that caused it, but it might have been related to solving some script uploading problems. Anyway, you're right that users then don't realize that the script itself could be the same version they already have.

 
4 hours ago
Jefferson Scher 1176 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

Thanks, Brett. I think you're the one who did most of the work.

 
4 hours ago
Jefferson Scher 1176 posts

Topic: Script development / New script

I'm not sure what "tool" you mean...

For a quicker response, I suggest the following: find that script's page on the site (the search on the Scripts tab searches in scripts) and use the Discussions tab there to contact the author. Most script authors will check there before visiting these general forums.

 
5 hours ago
HanFox 20 posts

Topic: Userscripts.org discussion / Spam and malware

Spammer:
http://userscripts.org/users/469102

 
7 hours ago
shreef_1990 4 posts

Topic: Ideas and script requests / i need auto click for this button

nicely Done

worked really Good

Thanks Monkey

 
10 hours ago
smk 555 posts

Topic: Userscripts.org discussion / Advertisers Writing Reviews

nope they've done this for months
spammers aren't blocked so well on this site

 
10 hours ago
Bazaku 1 post

Topic: Userscripts.org discussion / Spam and malware

http://userscripts.org/users/468773 sent me a message with the following, and I'm most certain that it's spam:
hello
It my pleasure to contact you after veiwing your profile today at userscripts.org i love it and also became interested in knowing more about you,Plz i will like you to contact me through my email (jane_bouma@yahoo.com)so that i will give you my pictures for you to know me well
jane

 
10 hours ago
Monkey2000 4 posts

Topic: Ideas and script requests / i need auto click for this button

shreef_1990 wrote:
sure
http://jumbofiles.com/ouvglrfudlrd
I apologize for missing this before, but in your original post, you refer to an <input type="hidden">. That's not a button, just a piece of data that gets sent to the server when you submit a form.

When I click Free Download, I get to a page with this in the form:

<input name="down_direct" value="1" type="hidden">
<input src="/images/serve.gif" type="image">

In this case, the <input type="image"> is the submit button you want to click. Assuming there is never more than 1 or less than 1 such buttons, you could try this:

function clickc(){
  document.querySelector('input[type="image"]').click();
}
window.setTimeout(clickc, 1);

 
12 hours ago
Sodder 2 posts

Topic: Script development / New script

Has there been a new addition for the Level 11 camps in the tool. What is best found when attackin them?

 
17 hours ago
BrenRS 5 posts

Topic: Userscripts.org discussion / Advertisers Writing Reviews

Do the advertisers ever go away???
It seems to be a daily routine for them to come back and put a spam review on my script.

 
18 hours ago
shreef_1990 4 posts

Topic: Ideas and script requests / i need auto click for this button

sure

http://jumbofiles.com/

i need to auto click to download link page

ex
http://jumbofiles.com/ouvglrfudlrd

 
19 hours ago
Monkey2000 4 posts

Topic: Ideas and script requests / i need auto click for this button

Strange. Can you post a link to your entire script and the page it's operating on.

 
21 hours ago
Brett Walach 6 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

Hey Jefferson, I think I understand everything now just fine... I added some code to make little FB icons which display on the left side of the pictures:

function addLinks(e) {
    var pix = document.querySelectorAll('img.commenter-pic');
    var urlparts, uid, aNew, imgNew;
    for (var i = 0; i < pix.length; i++) {
        if (pix[i].src.indexOf("graph.facebook.com") > -1) {
            urlparts = pix[i].src.split("/");
            uid = urlparts[urlparts.length - 2];
            //Create a < a href> element
            aNew = document.createElement("a");
            aNew.href = "http://www.facebook.com/" + uid;
            imgNew = document.createElement('img');
            //Create a < img> element
            imgNew.src = 'http://i.imgur.com/KJmZl.png'; // 20 x 20 facebook icon to use as a button
            imgNew.setAttribute('width', '20px');
            imgNew.setAttribute('height', '20px');
            imgNew.alt = 'FB ICON';
            imgNew.href = "http://www.facebook.com/" + uid;
            aNew.appendChild(imgNew); // Put the image inside the href to wrap it in a hyperlink
            pix[i].parentNode.insertBefore(aNew, pix[i]) // Add this clickable icon before all commenter pics
        }
    }
}
GM_registerMenuCommand("Add FB Links", addLinks, "F"); //Add to Monkey menu

Thanks for teaching me!!!

Here's how it looks in action: http://screencast.com/t/lVX0NvAAKj

 
21 hours ago
sebaro 77 posts

Topic: Userscripts.org discussion / Spam and malware

http://userscripts.org/users/468336
How about a 'Flag Spammer' button in the user's profile?

 
23 hours ago
Brett Walach 6 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

Holy crap you are a genius!!! I figured out how to use this (me.. not such a genius < at greasemonkey>)... wow! It is amazing thank you so much. Now I need to go study exactly how this works because I love it!!!! And I can see MANY uses for it in the future. THANK YOU THANK YOU!!!!!

I will eventually turn this into a userscript, and I think it's nice as-is to be a manually selected menu item. I will give you full credit for the code! Thank you Jefferson Scher!!

 
23 hours ago
Mindeye 1093 posts

Topic: Userscripts.org discussion / Spam and malware

cxujfisa89 posted this spam.

 
May 24, 2012
Brett Walach 6 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

Wow! Thank you for taking the time to write some code! :) I will study it.. meanwhile I'm trying to run it here...
http://jsfiddle.net/FightCube/ZPGVF/

*** edit... removed the rest of my uneducated post... no it won't run on jsfiddle... ***

...I guess it does run on Jsfiddle if you pull it out of the function ;-)

 
May 24, 2012
Mindeye 1093 posts

Topic: Userscripts.org discussion / The "Last update" date is changed when the script description is edited

The last updated date is changed when the script description is edited (the script itself hasn't changed). This bug confuses users, can any admin fix it?

 
May 24, 2012
Jefferson Scher 1176 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

If you insert the anchor element there, the FB link will appear to the right of the image and push down the comment. Is that okay?

function addLinks(e){
  var pix = document.querySelectorAll('img.commenter-pic'); 
  var urlparts, uid, aNew;
  for (var i=0; i<pix.length; i++){
    if (pix[i].src.indexOf("graph.facebook.com") > -1){
      urlparts = pix[i].src.split("/");
      uid = urlparts[urlparts.length-2];
      aNew = document.createElement("a");
      aNew.appendChild(document.createTextNode("FB"));
      aNew.href = "http://www.facebook.com/" + uid;
      pix[i].parentNode.insertBefore(aNew, pix[i])
    }
  }
}
GM_registerMenuCommand("Add FB Links", addLinks); //Add to Monkey menu

Then your challenge is to run it automatically at the right moment...

 
May 24, 2012
Brett Walach 6 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

Wow... took a while to figure out how to edit my HTML to get it to display... this site needs a DISABLE HTML checkbox.

 
May 24, 2012
Brett Walach 6 posts

Topic: Script development / Using Facebook ID To Insert a Profile Link

I'm trying to add a link next to all facebook thumbnails that appear on a page of comments in Yardsellr listings. The way the image is displayed is with this:

< img src="https://graph.facebook.com/1802592028/picture" class="commenter-pic">

So I'd like to grab the ID and format it into a simple URL like this:

< a href="http://www.facebook.com/1802592028">FB</ a>

Which would be placed before the original image, like this:

< a href="http://www.facebook.com/1802592028">FB</ a>< img src="https://graph.facebook.com/1802592028/picture" class="commenter-pic">

Would someone please point me in the right direction here? Thanks!

 
May 24, 2012
Hellspark 1 post

Topic: Ideas and script requests / Ogame - Soma dos lucros

greetings.

I would like a script that would make the sum of all theft of resources and subtract the consumption of deuterium. thus would have a total profit of all attacks in a period. and a button to resset sum.

would be very grateful if someone could do.

Thank you.

 
May 24, 2012
petesdragon 3 posts

Topic: Ideas and script requests / kingdoms of camelot

somewhere out there, there is a script that allows an online member to post all incoming attacks out of alliance reports, I have actually seen this work. Does anyone know where it is please?

 
May 24, 2012
BrenRS 5 posts

Topic: Userscripts.org discussion / Advertisers Writing Reviews

Yet another advertiser... what's new? :\

http://userscripts.org/scripts/reviews/133521

 
May 24, 2012
BrenRS 5 posts

Topic: Userscripts.org discussion / Advertisers Writing Reviews

Yet another advertiser... what's new? :\

http://userscripts.org/scripts/reviews/133521