August 18th, 2010 — 10:05pm
Recently I made a few amends to some Greasemonkey scripts I wrote a while back and, since I’ve been using git quite a bit recently, it made sense to me to move my Greasemonkey scripts onto GitHub.
So I did
And here they are:
Comment » | javascript, web
June 1st, 2010 — 10:02pm
I hadn’t done any monkeying around with Greasemonkey for a while until the other day when I came up with this script: http://github.com/ianoxley/open-selected-links
Any links that are present in the selected text will be opened on the mouseup event, except for the Cached and Similar links you get in Google search results.
If you’ve got and suggestions for improvements, let me know in the comments
UPDATE
The script has been updated so that you now have to press the Ctrl or Cmd key while selecting the text, in the same way that you would Ctrl / Cmd + click to open a link in a new tab.
Comment » | javascript
August 6th, 2009 — 9:45pm
Stack Overflow is great and I’m a big fan of the site. However, I’m not such a big fan of their tags page:

Because the tags are ordered solely by popularity and not alphabetically, I find it a bit awkward trying to find a tag I am interested in e.g. if you want to find JavaScript it could be located anywhere in the list.
Admittedly there is a search function to help you find tags but I wanted to be able to scan the list more easily and pick out the tags that interest me most. So, to scratch my own itch, I created a Greasemonkey script to transform the current tags page into a tag cloud:

Because the tags are in alphabetical order with their font size weighted according to popularity, I find it much easier to find tags I am interested in.
Try it out for yourself and see what you think:
And if you have any suggestions for improvements, please leave a comment.
Comment » | javascript