The Entrecard Bot has been on hold for a while now, mainly because I don’t use it any more. However before I stopped using it I revised the code once or twice (so a more refined version of Entrecard bot -the code within). The almost latest of which is on the current page.
However to the point I created a small script that would automatically move the widget tot he top of the fold (ie top of the page like below). SO though I would share it now.
Now there are two ways to do this:
Free Entrecard Above The Fold Addon:
All this requires is for you to have Firefox and for you to install it by clicking on the below link:
Then just visit any site with entrecard and it will auto send it above the fold and top right
Entrecard Above The Fold Greasemonkey Script
For this just insert the following script:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | // ==UserScript==
// @name EntreCardTop
// @namespace http://www.thenexus.tk/entrecard-addon
// @description Bring Entrecard drops to the top of the browser
// @include http://*
// ==/UserScript==
var allIframes = document.getElementsByTagName("iframe");
var ECframe = null;
//Find EntreCard Frame
for (i = 0; i < allIframes.length; i++ )
{
var srcStr = allIframes[i].src;
if(srcStr.match("http://entrecard.com/static/amazon/widget") != null) {
ECframe = allIframes[i];
break;
}
}
if (ECframe == null) {
//alert("no entrecard");
} else {
var oldStyle = ECframe.style.position;
var oldTop = ECframe.style.top;
var oldLeft = ECframe.style.left;
//about to change
ECframe.style.position = "fixed";
ECframe.style.top = "0px";
ECframe.style.left = "0px";
} |
Warning!!!! This script DOES NOT play nice with Adgitize Dropping Script!
If you are clever you can code the script so to allow you to auto click and time delay etc but…yea to you I pass the baton!
Popularity: 1% [?]
No related posts.
- 11 Comments
- Tags:


This is a pretty cool idea, so does it only show up top to users using GreaseMonkey?
Hey John;
Yes if you use the script you need the greasemonkey add on. However you can use the ‘standalone’ add-on without greasemonkey.
That’s pretty cool Donace. I don’t really use Entrecard much anymore but being able to do that is impressive. I’m keeping my Entrecard account so I can use the credits as a prize for my next contest.
How the hell do you come up with these things Donace? I wouldn’t know where to start. Reckon I will just stick to my boring mundane posts, with a bit of poetry and jokes spattered here and there.
Haha boredom Sire! that’s all it is… a few hours commuting to and from …utilize that time and you can do a lot!
Don’t give up with the poetry and jokes … I always enjoy those posts!
If nothing else Donace, I will always try to entertain, and perhaps relieve the boredom of some of my readers
I haven’t done any crazy dropping for months. Wish I found this last year
thanks for sharing anyway
haha well if you get back in the flow it’ll be there!
can you make it compatible with firefox 3.5.3 so i can use it
Hey, I wrote a comment on here once before but I’m not seeing it show up as of now, so reposting.
I just wanted to say that I’m glad you liked my code enough to use it, but pretty pissed off that you’re trying to pass it off as your own. Here is the post where I announced the original code. back in june. If you download the script on that page you will see that its just like the code you’ve posted here except you ripped out the “move back” functionality.
I don’t mind sharing my code, but claiming it as your own, saying “you created a small script” without so much as a hat/tip or link back? Not cool dude.
I am so sorry Dustin; I had grabbed the script anmd edited form some where but I couldnt remeber where. I will edit the post asap.