|
Posted by randfish
No matter your browser, these plug-and-play links will let you get
your job done faster and easier, and look like a pro in front of
bosses and clients.
The list isn't completely comprehensive, but it covers 95%+ of
the SEO data points I retrieve on a monthly basis and a few extras
I don't personally use that may be valuable to others. It also has
a section at the end on how to make your own bookmarklets for any
site, tool or service you use. To employ, just click and drag
the bookmarklet links from this blog post into your
sidebar or bookmarks folder and rename to whatever you'd like. I've
divided the post up into sections so you can quickly grab the items
you care about.
SEO Bookmarklets Sections:

Just follow the instructions from this highly "meta" image :-)
Site Indexation Queries
- #1 - Google site:rootdomain.com
- #2 - Yahoo! Site Explorer listing of pages on
the root domain
- #3 - Bing site:rootdomain.com
Backlink Data Queries
- #4 - Open Site Explorer (OSE) list
of links to current URL
- #5 - OSE list of links to entire domain
- #6 - OSE list of linking domains to
current URL
- #7 - OSE linking domains to entire domain
- #8 - OSE anchor text distribution for current
URL
- #9 - OSE anchor text distribution for entire
domain
- #10 - Yahoo! Site Explorer (Y!SE) links to
current URL
- #11 - Y!SE links to entire domain
- #12 - Google Blogsearch links to current URL
- #13 - Bing linkfromdomain for entire domain
- #14 - Historical PageRank for current URL
Specialized Search Queries
- #15 - Google: Remove personalization
- #16 - Google: Include duplicate results
- #17 - Google: Show results from last 24 hours
only
- #18 - Google: Show results from last 7 days
only
- #19 - Google: Show US results (useful when
performing queries from overseas)
- #20 - Google "Text-Only" Cache of current URL
Domain & Traffic Data Queries
- #21 - Domaintools lookup on current domain
- #22 - Compete.com traffic data on current
domain
- #23 - Quantcast traffic data on current domain
- #24 - Alexa traffic data on current domain
- #25 - Wayback Machine archives for curent URL
- #26 - Google Trends for Websites on the
current domain
Social Media Data Queries
- #27 - Backtweets Info on current URL
- #28 - Tweetmeme Info on entire domain
- #29 - PostRank Info on entire domain
- #30 - StumbleUpon Info on current URL
How to Construct Your Own Bookmarklets
Here's a sample code snippet for the bookmarklet above that
shows links from OpenSiteExplorer.org:
javascript:location.href='http://www.opensiteexplorer.org/'+location.host+'/a!links'
To reproduce the effect with a bookmarklet that calls data from
any site, you'll need to
- Find a web-based tool that stores the webpage it's calling data
for in the URL. For example, Google Trends for Websites
uses a format like "http://trends.google.com/websites?q=site:seomoz.org"
- Include the initial piece -
javascript:location.href=' at the start
of the bookmarklet link
- Follow that code snippet with the desired webpage that contains
data. For example, if I wanted to get Google Trends for Websites,
I'd use http://trends.google.com/websites?q=site%3A
- note that for special characters in the URL like the colon :
you'll need to use the hex character codes (a good list is
here)
- Next you'll need to call the current URL. The most common way
to do this is with window.location.href
or location.host which pulls the URL
string from the address bar.
- You may need to strip out portions of the URL to get just the
sub or root domain. In my example with Google Trends, I'd use
document.domain.replace('www.','') rather
than the full URL string from #4 above. This removes the www from a
domain name if it exists and extracts only the domain portion
instead of the complete URL.
- To combine the javascript code snippet, you'll need to use
proper syntax - following phrases with +, wrapping in single quotes
and ending with a semicolon ;
- The finished code snippet looks like this
- javascript:location.href='http://trends.google.com/websites?q=site%3A'+document.domain.replace('www.','');
- You can use a wide variety of Javascript commands to build all
sorts of bookmarklets, not just those that call URLs or append
data. However, you'll need a more advanced tutorial to show you
that process - sorry!
Now you're ready to start building your own bookmarklets. We'd
love to have you share any of your favorites (or any new
concoctions) in the comments below. If you've got great ones, I'll
even try to add them into the post tomorrow and, naturally, pass on
the credit :-)
p.s. One I'd love to see is a bookmarklet that gives a pop-up of
the current website's IP address and, for extra bonus, takes you to
a Bing IP: search query to show other sites hosted on that
address.
|