Skip to content

Instantly share code, notes, and snippets.

@andregumieri
Created January 30, 2014 12:48
Show Gist options
  • Save andregumieri/8707670 to your computer and use it in GitHub Desktop.
Save andregumieri/8707670 to your computer and use it in GitHub Desktop.
Bookmarklet que pega o texto selecionado no browser e abre uma nova aba com uma busca no IMDB.
/**
* Bookmarklet que pega o texto selecionado no browser
* e abre uma nova aba com uma busca no IMDB
*
* SITE PARA CRIAR O BOOKMARKLET
* @link http://mrcoles.com/bookmarklet/
*/
var s = window.getSelection();
if(s.rangeCount) {
var q = encodeURIComponent(s.getRangeAt(0));
var u = "http://www.imdb.com/find?q=" + q + "&s=all";
window.open(u);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment