Finding pdf paper from CiteULike
Unfortunately, I don't have access to paid site. But some authors
are generous enough to put pdf on his own site, which I find
using google search.
1 2 javascript:(function(){ 3 var title = document.title.substring(11); 4 var query = '%22' + title + '%22 ' + 'filetype:pdf'; 5 var url = 'http://www.google.com/search?q=' + encodeURI(query); 6 window.open(url); 7 })();
It simply takes the paper title from windows title. Then it searches the title(enclosed in quotation) for pdf files of the same name.