User Pass
Home Sign Up Contact Log In
Forum > Goal Line Blitz > Greasemonkey Scripts > Greasemonkey Scripts (original thread)
Page:
 
kevindurant35
offline
Link
 
ok im confuse anyway i can get a short explanation of all this?
 
mw54finest
offline
Link
 
Originally posted by kevindurant35
ok im confuse anyway i can get a short explanation of all this?


First page 2nd post.

To find out what Greasemonkey is:
http://en.wikipedia.org/wiki/Greasemonkey

To utilize the scripts:
1. Install Greasemonkey https://addons.mozilla.org/en-US/firefox/addon/748 (if you don't have it)
2. Click on the scripts provided and follow any addition directions that the creator has provided
3. Go to your GLB home page to see the changes.

Note that the scripts will only work on Firefox.
 
kevindurant35
offline
Link
 
nm im intalling firefox now
Last edited Jun 25, 2008 13:22:31
 
Dravz
offline
Link
 
By the way, I know it's not a greasemonkey script, but I just found yet another use for the Page Update Checker add-on. I have it checking for updates to the Leagues page so that I'll know when the Canada A leagues are released! I amaze even myself sometimes.

 
Cronus6
offline
Link
 
Originally posted by Dravz
By the way, I know it's not a greasemonkey script, but I just found yet another use for the Page Update Checker add-on. I have it checking for updates to the Leagues page so that I'll know when the Canada A leagues are released! I amaze even myself sometimes.



Yeah, I use it to check PM's, team forums, rosters of upcoming teams (for boosts/changes) and a couple other things I'm not willing to share.

There's another similar extension I'm currently testing called SiteDelta ( https://addons.mozilla.org/en-US/firefox/addon/4337 ) that does the same thing, but has more options if anyones interested it check it out.

*edit : Something everyone using page checking extensions should keep in mind is not to over due it. Set your time between checks to something reasonable (for most things, I think 30mins-1 hour, or once every 24 hours for something like rosters is plenty). If you just hammer away every 2-5 mins it just causes excessive server load, and slows things down for everyone.
Last edited Jun 25, 2008 14:01:22
 
dnooner
offline
Link
 
I am sorry, I am not a computer guru by a longshot, could someone PLEASE show me what I should have on the highlight a player script for more than one player. If you could do it in a way that I could copy and paste yours to my notepad document, then fill in my player numbers that would be OUTSTANDING!
 
mw54finest
offline
Link
 
Originally posted by dnooner
I am sorry, I am not a computer guru by a longshot, could someone PLEASE show me what I should have on the highlight a player script for more than one player. If you could do it in a way that I could copy and paste yours to my notepad document, then fill in my player numbers that would be OUTSTANDING!


http://glbscripts.myfreeforum.org/about11.html
Look at the addendum.
It's about the same as the instructions on the 1st page, but the text you need to copy and paste is within a text box. You still need to replace 000001 and 000002 with your player Id number and keep adding lines til you are finished. If you still have a problem with after trying that, I can create a script for your players. (Wow, you have quite a few)
Last edited Jun 25, 2008 14:53:44
 
Link
 
Originally posted by mw54finest
Originally posted by dnooner

I am sorry, I am not a computer guru by a longshot, could someone PLEASE show me what I should have on the highlight a player script for more than one player. If you could do it in a way that I could copy and paste yours to my notepad document, then fill in my player numbers that would be OUTSTANDING!


http://glbscripts.myfreeforum.org/about11.html
Look at the addendum.
It's about the same as the instructions on the 1st page, but the text you need to copy and paste is within a text box. You still need to replay 000001 and 000002 with your player Id number and keep adding lines til you are finished. If you still have a problem with after trying that, I can create a script for your players. (Wow, you have quite a few)


this may be relatively easy to do dynamically, I'll see if I can crack it
 
dnooner
offline
Link
 
I DID IT!
 
Kevin71
offline
Link
 
This is awesome, I wish I had seen it sooner. Nice work all involved.
 
knaim
offline
Link
 
I saw this script in the myfreeforum

http://glbscripts.myfreeforum.org/Scroll_players_from_profile_view_about46.html

http://userscripts.org/scripts/show/28988 that allows you to scroll through you players.... However, I think you have to change the code or something for it to work with your players. I am new to this and would love for some to show me where to change what to make this scrolling thing work.

Also, can you disable or uninstall scripts that you don't want or like?


 
knaim
offline
Link
 
Also,

Where do I go to change this. I installed the "friend" list script and it has a bunch of people on it I don;t know including Bort. How do I change this?

The directions say:
This will add a friends list to your home page on GLB

To add a friend, insert this two lines before it says container.innerHTML:

Code:
//Friend #
//ID -
var id#='idnumber'
//name -
var name#='name'


# = The number of the friend. For example, if he is the 7th friend in the script (after //Friend 6) then # will be 7. This goes after //Friend, id, and name.

idnumber = The digits at the end of the user's home page url

name = Your chosen name (i.e. Bort)

Also insert this one line before the last line of code:

Code:
'<td><img src="' + avatar + id# + '" width="75" height="75">' +
'<br><a href="' +
friendlink + id# + '">' + name# + '</a></td>' +

# = Same as above

I know it's kinda complicated, but I'll try to look for an easier way. If you have any questions, ask them.

http://userscripts.org/scripts/show/27961

But where do I access this from?
 
mw54finest
offline
Link
 
Originally posted by knaim
I saw this script in the myfreeforum

http://glbscripts.myfreeforum.org/Scroll_players_from_profile_view_about46.html

http://userscripts.org/scripts/show/28988 that allows you to scroll through you players.... However, I think you have to change the code or something for it to work with your players. I am new to this and would love for some to show me where to change what to make this scrolling thing work.

Also, can you disable or uninstall scripts that you don't want or like?

Look at the second post on the link. It has instructions to modify it for your players. You can disable or uninstall scripts by right clicking on monkey icon on lower right status bar and go to manage user scripts
 
knaim
offline
Link
 
Originally posted by mw54finest
Originally posted by knaim

I saw this script in the myfreeforum

http://glbscripts.myfreeforum.org/Scroll_players_from_profile_view_about46.html

http://userscripts.org/scripts/show/28988 that allows you to scroll through you players.... However, I think you have to change the code or something for it to work with your players. I am new to this and would love for some to show me where to change what to make this scrolling thing work.

Also, can you disable or uninstall scripts that you don't want or like?

Look at the second post on the link. It has instructions to modify it for your players. You can disable or uninstall scripts by right clicking on monkey icon on lower right status bar and go to manage user scripts


It Says:

Find
Code:
var myPlayers = ['000001','000002','000003']


and replace 000001 with your 1st player number, 000002 with 2nd and so on.


But where do I find the code?
 
mw54finest
offline
Link
 
Originally posted by knaim
Also,
Where do I go to change this.


To modify an installed script, it is also done through "Manage User Scripts". From "Manage User Scripts" window, highlight the name of the script you want to modify and click "edit". For the first time, it will ask you to select a text editor. You can navigate and find "notepad.exe" and select it.
 
Page:
 


You are not logged in. Please log in if you want to post a reply.