Recent posts in Ideas and script requests

Subscribe to Recent posts in Ideas and script requests 15388 posts

4 hours ago
Luxury Bathroom 1 post

Topic: Ideas and script requests / Easy script for noob!

Thanks for this script, im also a beginner :)

Luxury Bathroom , Luxury Bathrooms

 
19 hours ago
andrewOddsfu... 1 post

Topic: Ideas and script requests / Customization of ODDSFUTURES.com

Hey Dumoulin,

I actually work for Oddsfutures.com on the user interface side of things.
I'd be interested to know what you are thinking of doing - we'e always looking to make the site better and would welcome suggestions for different views / layouts of the site...

Incidentally the widths for those two elements are set in a global CSS. You can change them around easily if you like.

We have a API (api.oddsfutures.com) if you are just looking to generate a difference view on our content and want to go all out.

cheers,
anderew

 
20 hours ago
piyal 20 posts

Topic: Ideas and script requests / Jillsclickcorner auto clicker

If anybody want this site login details to check this site,that i can provide..

 
20 hours ago
piyal 20 posts

Topic: Ideas and script requests / Jillsclickcorner auto clicker

Jillsclickcorner is a ptc site & I'm looking some auto clicker that site.there are some ads & first add has captcha.(that we can solve manually)..other all the ads don't have captcha & script have click all the ads one by one..pls make script for this.thanks in advance..

 
Feb 12, 2012
BNinja 1 post

Topic: Ideas and script requests / Tagged: Atuo Buy

Hello, I am looking for a script that will automatically click a series of buttons(one after the other) when the web page is loaded/refreshed. For example:

1. Click buy
2. If cash > payment click confirm
3. If cash < payment click cancel

The process would need to loop until all "items" are purchased. I usually write in C++ and Java but I have been doing some research in an attempt to write the script myself but I am doing a terrible job at succeeding. I would appreciate any help you can offer.

This is what I have done so far...

var setBtn = document.getElementById("id-button-yes green_btn_big");
setBtn.click(this);

if (cash < cash-neg)
{
var setBtn = document.getElementById("id-button-close confirm-cancel");
setBtn.click(this);
}

if (cash > cash-neg)
{
var setBtn = document.getElementById("id-button-buy green Btn");
setBtn.click(this);
}

 
Feb 11, 2012
AnonymousGuest 7 posts

Topic: Ideas and script requests / Easy script for noob!

Woho, it worked! Thank you so much AmpliDude. :)

 
Feb 11, 2012
AmpliDude 252 posts

Topic: Ideas and script requests / Easy script for noob!

I'm not sure why i used .indexOf in the script, but it is the part that's causing the problem.

Just replace
if (document.location.href.indexOf(websites[i][0]) != -1) {
with
if (document.location.href == websites[i][0]) {
and it should work

 
Feb 11, 2012
pietro 73 posts

Topic: Ideas and script requests / Autoplay for youtube embed video

Hi

Thanks but do not work for me :(

I need to this site claimfans.com to autoplay youtube videos

I tried this script but do not autoplay youtube video in this site

Se the pic i must click the play button manually every video

http://img850.imageshack.us/img850/5797/immagin...

Any others solution ?

Thanks for help

 
Feb 11, 2012
AnonymousGuest 7 posts

Topic: Ideas and script requests / Easy script for noob!

Sorry for bumping such an old topic. This is an amazing script, exactly what I was looking for, except one little error I keep getting. I have 15+ pages I want to add to this script (that have numbers at the end of the URL), but after the script gets number 10 (http://www.pkmns.com/levelup.php?id=10), it goes back to number 2 and does not continue onto 11. Any help with this?

// ==UserScript==
// @name PKMN
// @description Scrolls through Pages
// @include http://www.pkmns.com/levelup.php?id=*
// ==/UserScript==

var websites = [ // Here you can fill up the wanted sites and jump times in seconds.
["http://www.pkmns.com/levelup.php?id=1", 1],
["http://www.pkmns.com/levelup.php?id=2", 1],
["http://www.pkmns.com/levelup.php?id=3", 1],
["http://www.pkmns.com/levelup.php?id=4", 1],
["http://www.pkmns.com/levelup.php?id=5", 1],
["http://www.pkmns.com/levelup.php?id=6", 1],
["http://www.pkmns.com/levelup.php?id=7", 1],
["http://www.pkmns.com/levelup.php?id=8", 1],
["http://www.pkmns.com/levelup.php?id=9", 1],
["http://www.pkmns.com/levelup.php?id=10", 1],
["http://www.pkmns.com/levelup.php?id=11", 1],
["http://www.pkmns.com/levelup.php?id=12", 1],
["http://www.pkmns.com/levelup.php?id=13", 1],
["http://www.pkmns.com/levelup.php?id=14", 1],
["http://www.pkmns.com/levelup.php?id=15", 1]
];

for (var i = 0; i < websites.length; i++) {
if (document.location.href.indexOf(websites[i][0]) != -1) {
setTimeout(function() {
document.location.href = websites[(i+1)%websites.length][0];
}, websites[i][1]*1000);
break;
}
}

 
Feb 11, 2012
Daniel Holt 3 posts

Topic: Ideas and script requests / simple script to take a term from site A and search site B using that term

No, not something like that . . . exactly that! Thanks a million.

 
Feb 11, 2012
StudentSite 2 posts

Topic: Ideas and script requests / Cookie reader

Thanks Sdfghjklkjhgfds! :) Just found the http://stackoverflow.com/questions/2846045/fire... I will try it this week :)
Cheers

 
Feb 11, 2012
Vivre 27 posts

Topic: Ideas and script requests / Autoplay for youtube embed video

Dear pietro,

here you are: http://userscripts.org/scripts/show/125468

Your request inspired me to hack this out and I hope it serves your needs.
I still ask myself if all these 100 videos are all on one page and how you manage to view them at the same time.

Try this page when you've installed the script: http://enenews.com/forum-general-discussion-thr...

Right now it works for iframe-embed-links like the one from your example page but not with object embedded vids. It's set to run on all pages, so please adjust the includes to the pages you need.

enjoy :-)

 
Feb 10, 2012
pietro 73 posts

Topic: Ideas and script requests / Autoplay for youtube embed video

Can someone create me a script to start to autoplay all videos from youtube please?

 
Feb 10, 2012
ebbixx 8 posts

Topic: Ideas and script requests / Youtube "Add To" - playlists sorted alphabetically

Also, as an update, since I realize firepol might not be revisiting this thread now that he did finish the script (and has done several revisions) -- the script does run in Chrome if you have installed the Tampermonkey add-on that enables support comparable to what's possible for Firefox Greasemonkey users.

 
Feb 10, 2012
ebbixx 8 posts

Topic: Ideas and script requests / Youtube "Add To" - playlists sorted alphabetically

@Habbakuk - firepol's script can be found at http://userscripts.org/scripts/show/123272 and installed in the usual way one installs any userscript here. Feel free to expand on the question if that didn't answer it.

 
Feb 10, 2012
ebbixx 8 posts

Topic: Ideas and script requests / Youtube "Add To" - playlists sorted alphabetically

firepol, this has been a great script and I thank you for it. Since your script fu is far more awesome than mine (especially considering I have yet to write a single userscript ;) ) I'm wondering about something that may well be beyond the range of what's likely to be possible in a userscript. Please don't hit me too hard if this strikes you as a silly question... I only ask because clearly you've done the necessary homework in at least one part of YouTube page formatting.

Here's the question, succinct as I can make it:

Users have asked about problems with searches showing unwanted videos, and especially with videos showing up as either related or on the home page (as videos Google presumes users might be interested in, which seems to be tied to past searches)...

Brainstorming invited, would there be some way to develop a userscript that addressed this issue, perhaps by maintaining some sort of user-defined whitelist and blacklist of materials the user either does or doesn't want to see?

What would it take to suss out the course to developing such a script? (I have some scripting, programming familiarity from way back, starting from Basic, FORTRAN, Snobol etc. up thru C++ and including Python, but not too practiced with javascript, AJAX, or the rest of the mess that is probably somewhat essential for answering my own question here... it's always been more avocation for me than something I've pursued vocationally.

If I can narrow down the question, or cut it into managable bits I might be okay getting started on this, but I confess I've been spinning my wheels lately in abstract speculation rather than getting down to the actual coding.

If you're interested, I did start a Google Code project as a potential way to explore some of the options that people really need to do for themselves, considering how uninterested YouTube has been (understandably, I suppose) in fostering any kind of open source approaches to enhancing YouTube functionality.

Contact me if you want to be added for editing privileges and such to YouTube Tech Tools or if you have some better suggestions, which I hope you do.

 
Feb 10, 2012
drkh 2 posts

Topic: Ideas and script requests / [Request] Auto-collapse the last expanded folder in the folder tree of the FireFox Library window, etc

In the folder tree of the Library window (bookmark and history) and in the folder tree of the "Edit This Bookmark/New Bookmark" dialogue, after a folder is expanded, it won't collapse until the user manually clicks again on its expando button. Overtime, in a large folder tree, a lazy user like me may have lots of expanded folders waiting to be collapsed.

So, I am looking for something that can auto-collapse the last expanded folder, or at least adds a "Close All folders" button into the afore-mentioned window/dialogue. But it seems not existent. Can anybody consider writing a script to make life easier?

I know the "Autoclose Bookmark&History Folders" extension. But it only deals with the side bar.

 
Feb 10, 2012
Cytheria 5 posts

Topic: Ideas and script requests / Script for New Kabam Game : Thirst of Night

I know a forum where there are scripts for this game, but I forgot the address. I will post here when I find it again.

 
Feb 10, 2012
pietro 73 posts

Topic: Ideas and script requests / Autoplay for youtube embed video

Hi

I serch from logintime an automatic autoplay for all youtube embed video.

I some sites i need to see 100 videos but every video i need to click play button.

Exist eny script to add in automatic in all embed video the autoplay ?

I found block autoplay all, but i need activate (force) autoplay in all youtube embed videos.

This is an example of video without autoplay, i need to click play to start it.

http://www.htmlgoodies.com/tutorials/web_graphi...

I want to force all video to play in automatically

help me

Thanks to all

 
Feb 9, 2012
Jilbran 2 posts

Topic: Ideas and script requests / it's About Mafia war Game

Dear to All who expert in script,

I need script that can Auto Rob,..such as Arun script, which is no longer works.Which is like mafia war auto player /MWAP...
But not like the spocholm,.the Rob is very slow there.
Please Help..Tyvm :)

 
Feb 9, 2012
teukkam 181 posts

Topic: Ideas and script requests / simple script to take a term from site A and search site B using that term

Something like this? http://userscripts.org/scripts/show/125296

 
Feb 9, 2012
teukkam 181 posts

Topic: Ideas and script requests / Youtube +18 Unblock

So they want someone else to bother to write a script for instead? Creating a fake account is still the path of least effort, that was my point.

 
Feb 9, 2012
negativedrew 1 post

Topic: Ideas and script requests / [REQ] Twitter: change instances of "real name" to username/@name

Ever since Twitter rolled out their new UI, they've placed a greater emphasis on "real name" identification. This isn't very helpful when you follow a ton of people that have jokes names (that are constantly changing) or a bunch of folks that put in just their first name (bound to be multiples).

I'm hoping someone could whip up a script that would replace instances of "real name" (marked with blue lines in the linked picture) with the user's @name.
If possible, it'd be great if the tweet headers had the @name and real name switched (marked with a pink line).

http://i40.tinypic.com/20jg0aw.png

I don't know why twitter insisted on this change but it's horribly annoying and makes it much more difficult to keep track of who is saying what. I don't think this should be a particularly difficult script to create, and hopefully someone here thinks it's a good enough idea to take a crack at it.

Thanks!

 
Feb 8, 2012
Daniel Holt 3 posts

Topic: Ideas and script requests / simple script to take a term from site A and search site B using that term

This is probably a simple script to write but I have no idea what I'm doing, so I'd be grateful for any help I can get.

www.worldswithoutend.com is a site that about books that have won various awards. It has pages for hundreds of individual book titles (e.g.: https://www.worldswithoutend.com/novel.asp?ID=2097). Each of those pages provides links that allow you to find the individual book on amazon.com or amazon.co.uk or to add it to Amazon's Kindle. I'd like a script that will insert an additional link that would allow you to find the book in the catalog of the New York Public Library (https://catalog.nypl.org/search).

Thank you!

 
Feb 8, 2012
sdfghjklkjhg... 525 posts

Topic: Ideas and script requests / Cookie reader

javascript cant write files as far as i know
but you can send your cookie to a server (like set up one on 127.0.0.1 aka the computer you are looking at now) that can create a file
cookies are in document.cookie