It's pretty easy once you find out what is the URL pattern of posts and other resources. This simple function does the trick:
function isPostUrl(url) {
return url.match(/^http:\/\/.*\.blogspot.com\/\d{4}\/\d{2}\/.*\.html$/) != null
}
(probably can be improved, I am not JavaScript/regex guru). This simply checks whether the URL matches post address pattern, something like http://foo.blogger.com/YYYY/MM/beautified-title.html.
A little bit of testing (shameless surreptitious):
isPostUrl("http://nurkiewicz.blogspot.com/2011/11/spring-pitfalls-transactional-tests.html") //true
isPostUrl("http://nurkiewicz.blogspot.com/search/label/spring") //false
isPostUrl("http://nurkiewicz.blogspot.com/2011_11_01_archive.html") //false
Obviously you use it in companion with window.location.href:
if(isPostUrl(window.location.href)) {
//...
}