Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edcottrell/7c3c5546a03944be44371c73d8172a23 to your computer and use it in GitHub Desktop.
Save edcottrell/7c3c5546a03944be44371c73d8172a23 to your computer and use it in GitHub Desktop.
TextExpander Snippet to Search the Internet Archive
// Get the URL for the Internet Archive history (if any) for the
// URL currently on the system clipboard
// Start with the clipboard content
var result = TextExpander.pasteboardText;
result = 'https://web.archive.org/web/*/' + result;
// Return the result
TextExpander.appendOutput(result);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment