Case sensitive Google search
Figure 1: Case Sensitive Google Search
Google does not support "case sensitive" searches (and here and here). It does seem to return slightly different results depending on the case of the search query, but if you are only interested in the exact "case sensitive" matches you're on your own.
To solve this problem, I've written a small Javascript snippet that shades results from Google searches if not exactly matching the case-sensitive search query.
You can download it as:
- Case Sensitive Search Firefox Extension: it works with Firefox 3 and 4.
- Case Sensitive Search Bookmarklet: just create a bookmark using the following code as url and click it when on a Google search page.
javascript:(function(){var s = document.createElement('script'); s.setAttribute('type', 'text/javascript'); s.setAttribute('src', 'https://lbolla.info/cssearch/js'); document.getElementsByTagName('head')[0].appendChild(s);})();
A demo is available here.
Let me know what you think!