Skip to content

Instantly share code, notes, and snippets.

@aluxian
Created February 7, 2022 10:47
Show Gist options
  • Save aluxian/98bd56593e9ed587c6538cec5e844a06 to your computer and use it in GitHub Desktop.
Save aluxian/98bd56593e9ed587c6538cec5e844a06 to your computer and use it in GitHub Desktop.
Bookmarklet for redirecting from tweet to thread reader
// Test case:
// https://mobile.twitter.com/danluu/status/1487228574608211969
// https://threadreaderapp.com/thread/1487228574608211969.html
// Use on twitter.com root tweet page
window.location = `https://threadreaderapp.com/thread/${
/status\/(\d+)/g.exec(document.location.pathname)[1]
}.html`;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment