Bookmarklets: MSU Libraries(working code and proof of concepts)

Browser Add-Ons and Bookmarklets for Library and Web Resources

Bookmarklets are "smart bookmarks" that perform actions or enhance the website you're visiting with a single click.

Click on the links below to demo OR drag the links to your web browser toolbar.

Search this site (works on site you are viewing)

Wikipedia Search

MSU CatSearch

Twitter Search

LibSpy - Forces CatSearch based on certain domains

LibSpy - Forces CatSearch based on certain domains

javascript:(function(){ // your code here var domain=window.location.hostname; console.log(domain); if ((domain=='www.sagepub.com') || (domain=='http://www.sciencedirect.com') || (domain=='http://onlinelibrary.wiley.com')) { if(!q) {q=prompt("Wait, Don't pay for this... Try MSU Library CatSearch","");} if(q!=null) {document.location.href="http://montana.summon.serialssolutions.com/search?s.cmd=addFacetValueFilters(ContentType,Journal+Article)&s.pn=1&s.q="+escape(q);} } })();