| Author |
Message |
Bob Ainsworth
Joined: 22 Apr 2005
Posts: 499
Location: Oklahoma
|
Posted: Tue May 23, 2006 2:38 pm
| |
| swimpuppy wrote: | | Wow! This sounds really cool and I wanna try it. But I'm using Internet Explorer and don't wanna download Firefox just to check downloads as of right now. Has anyone used the extension with IE (if it's even possible)? |
IE 7 has this ability along with tabs.
It's in beta right now, but so far it looks good.
Hopefully they can get a hold on their security issues.
I use FF and IE about 50/50, I have a lot of video plug-in issues with FF and have to revert back to IE a lot. |
|
mariotomic

Joined: 15 Mar 2006
Posts: 8
Location: Novi Sad, Serbia
|
Posted: Tue May 23, 2006 2:45 pm
| |
Hey Ingus,
I hope you don't mind me tweaking your ext a bit? :)
I've reduced it's size by a third.
Here it is. |
|
ingus
Joined: 20 Jul 2005
Posts: 58
|
Posted: Tue May 23, 2006 2:59 pm
| |
| mariotomic wrote: | Hey Ingus,
I hope you don't mind me tweaking your ext a bit? :)
I've reduced it's size by a third.
Here it is. |
No, I don't mind :) |
|
lilcrazyfuzzy

Joined: 29 Nov 2005
Posts: 12926
Location: 50°46′31″N 6°4′58″E
|
|
lilcrazyfuzzy

Joined: 29 Nov 2005
Posts: 12926
Location: 50°46′31″N 6°4′58″E
|
Posted: Tue May 23, 2006 3:33 pm
| |
| mariotomic wrote: | Hey Ingus,
I hope you don't mind me tweaking your ext a bit? :)
I've reduced it's size by a third.
Here it is. |
eh, how come i can't? it doesn't want to install when i modify it.
Is there anything to change in the installation file when modifying it? |
|
vonora

Joined: 11 Dec 2005
Posts: 116
Location: New York
|
Posted: Tue May 23, 2006 3:51 pm
| |
Works fine on Mac. Thanks a million!!! |
|
thesupe87
Joined: 07 Feb 2006
Posts: 858
Location: arenacreative.com
|
Posted: Tue May 23, 2006 4:06 pm
| |
im restarting firefox right now to try it out! thanks so much :) |
|
thesupe87
Joined: 07 Feb 2006
Posts: 858
Location: arenacreative.com
|
Posted: Tue May 23, 2006 4:16 pm
| |
It works aWeSOME!! I don't mean to be a PITA - maybe you can get some payment from SS for the time it takes for you to program this little extension, but it would be sweet if it also showed your daily cash - as well as the total for the month. Anyone up to it? ;) |
|
aron
Joined: 18 Feb 2006
Posts: 9
|
Posted: Tue May 23, 2006 4:16 pm
| |
This is really great !
How about adding a way to view the amount of dollars and downloads today, in addition to the whole month ? |
|
mariotomic

Joined: 15 Mar 2006
Posts: 8
Location: Novi Sad, Serbia
|
Posted: Tue May 23, 2006 4:28 pm
| |
Ingus,
I tried extending this ext to make it show overall (unpaid) eranings and total dls, but for some reason it fails to fetch it.
In order to precisely define which numbers I need to be fetched I had to "quote" text that follows, but I'm not sure if it's supposed to be done that way. I'm sure you'll get what I'm talking about after downloading it from here
http://www.putfwd.com/index/putfwd-dl-action/id.19396/type.xpi
You can reach me at mario mnkey mariotomic.com I'd like to help this ext grow :) |
|
leaf

Joined: 24 Oct 2004
Posts: 255
Location: Norway
|
Posted: Tue May 23, 2006 5:43 pm
| |
and how about a cash register sound each time our earnings go up :)
tyler
---------------------------------
Microstock Group
A meeting place for microstock photographers |
|
johncarleton

Joined: 05 Oct 2005
Posts: 2
Location: San Jose, CA
|
Posted: Tue May 23, 2006 6:32 pm
| |
sweeeeeeeeeeeeeet! :) |
|
yuripanda

Joined: 29 Oct 2005
Posts: 342
Location: North Carolina
|
Posted: Tue May 23, 2006 9:14 pm
| |
For someone (like me) who checks SS obsessively every few minutes, this is FANTASTIC!!! Thank you!! |
|
ingus
Joined: 20 Jul 2005
Posts: 58
|
Posted: Wed May 24, 2006 1:01 am
| |
| mariotomic wrote: | Ingus,
I tried extending this ext to make it show overall (unpaid) eranings and total dls, but for some reason it fails to fetch it.
In order to precisely define which numbers I need to be fetched I had to "quote" text that follows, but I'm not sure if it's supposed to be done that way. I'm sure you'll get what I'm talking about after downloading it from here
http://www.putfwd.com/index/putfwd-dl-action/id.19396/type.xpi
You can reach me at mario mnkey mariotomic.com I'd like to help this ext grow :) |
The tricky part here is that there are line breaks and tabs between the html
The regexps you can use are:
| Code: |
var dlr = new RegExp('([0-9]+)</b></td>(\t|\r|\n)*</tr>(\t|\r|\n)*</table>(\t|\r|\n)*<br>(\t|\r|\n)*<div class="greenbox">', 'gm');
var dl = dlr.exec(text);
alert(dl[1]);
var ernr = new RegExp('Total Unpaid Earnings([^<]+)</td>(\t|\r|\n)*<td class="datacell"><b>[^0-9]+([0-9]+\.[0-9]+)', 'gm');
|
|
|
mateimiruna
Joined: 20 Dec 2005
Posts: 671
|
Posted: Wed May 24, 2006 1:21 am
| |
| ingus wrote: |
| Code: |
var dlr = new RegExp('([0-9]+)</b></td>(\t|\r|\n)*</tr>(\t|\r|\n)*</table>(\t|\r|\n)*<br>(\t|\r|\n)*<div class="greenbox">', 'gm');
var dl = dlr.exec(text);
alert(dl[1]);
var ernr = new RegExp('Total Unpaid Earnings([^<]+)</td>(\t|\r|\n)*<td class="datacell"><b>[^0-9]+([0-9]+\.[0-9]+)', 'gm');
|
|
OMG! That's martian language to me! LOL |
|
| |
|