Posts tagged: chrome

NoFollow Checker For Safari 5

Posted June 9 by Dan Cryer

A while ago, I wrote a very simple nofollow extension for Google Chrome. When enabled, it marks all no-follow links with a red highlight. Despite it’s simplicity, it has been downloaded a few thousand times!
So, with the release of Safari 5 and it’s new extensions system, I thought I’d knock together something that does the [...]

Read More »

Google Chrome Frame

Posted February 11 by Dan Cryer

I’m sure by now, if you work in web development, you’ll have heard of Google Chrome Frame. The plugin for Internet Explorer that replaces the entire rendering engine with Google Chrome, on demand.
Whilst I understand that this is a less than ideal solution, as if a user can install a plugin, they can probably replace [...]

Read More »

Chrome Extension: Ten Blue Links

Posted December 18 by Dan Cryer

Over the past few years, search engines have been adding more and more content to every search result page. From local listings and maps, to images and tweets. A lot of people find that search results are now too cluttered and it’s difficult to actually see the listings themselves.
I’ve developed a Google Chrome extension that [...]

Read More »

Google Chrome Twitter Extension: TweetPage

Posted October 15 by Dan Cryer

I’ve just written another Google Chrome extension, this time a little more complex. It’s a Twitter ‘Tweet This Page’ extension, much like the many available bookmarklets, except this one allows you to tweet directly from within the extension, without leaving the site you’re on to go to twitter.com. You’ll need to log into Twitter the [...]

Read More »

Chrome NoFollow extension updated

Posted October 15 by Dan Cryer

As a quick follow up to my nofollow marker post, I’ve put up a new version of the extension. It does exactly the same job as the old one, except without the need for any JavaScript. The new extension simply uses the following CSS:
a[rel~=nofollow]
{
background-color: #FCC !important;
border: 1px dashed #F55 !important;
color: #600 !important;
}
I should really have thought [...]

Read More »