Skip to content

Instantly share code, notes, and snippets.

@ohheh
Last active August 22, 2022 11:17
Show Gist options
  • Star 10 You must be signed in to star a gist
  • Fork 5 You must be signed in to fork a gist
  • Save ohheh/5148577 to your computer and use it in GitHub Desktop.
Save ohheh/5148577 to your computer and use it in GitHub Desktop.
A javascript bookmarklet for opening Letterboxd from an IMDB page.
javascript:{var s = window.location.href.toString();var p=/\/(?:title|name)\/([a-zA-Z0-9])+\//gi;if (p.test(s)){try{var n=s.match(p)[0].split("\/")[2];window.open('http://letterboxd.com/imdb/'+n);}catch(e){}}};void(0);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment