|
4 hours ago
|
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
|
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
|
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
|
Topic: Userscripts.org discussion / Spam and malware Spammer:
|
|
7 hours ago
|
Topic: Ideas and script requests / i need auto click for this button nicely Done worked really Good Thanks Monkey |
|
10 hours ago
|
Topic: Userscripts.org discussion / Advertisers Writing Reviews nope they've done this for months
|
|
10 hours ago
|
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:
|
|
10 hours ago
|
Topic: Ideas and script requests / i need auto click for this button shreef_1990 wrote: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 function clickc(){
document.querySelector('input[type="image"]').click();
}
window.setTimeout(clickc, 1);
|
|
12 hours ago
|
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
|
Topic: Userscripts.org discussion / Advertisers Writing Reviews Do the advertisers ever go away???
|
|
18 hours ago
|
Topic: Ideas and script requests / i need auto click for this button sure i need to auto click to download link page |
|
19 hours ago
|
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
|
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
|
Topic: Userscripts.org discussion / Spam and malware http://userscripts.org/users/468336
|
|
23 hours ago
|
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
|
Topic: Userscripts.org discussion / Spam and malware cxujfisa89 posted this spam. |
|
May 24, 2012
|
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...
*** 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
|
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
|
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
|
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
|
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:
So I'd like to grab the ID and format it into a simple URL like this:
Which would be placed before the original image, like this:
Would someone please point me in the right direction here? Thanks! |
|
May 24, 2012
|
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
|
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
|
Topic: Userscripts.org discussion / Advertisers Writing Reviews Yet another advertiser... what's new? :\ |
|
May 24, 2012
|
Topic: Userscripts.org discussion / Advertisers Writing Reviews Yet another advertiser... what's new? :\ |