Skip to content

Instantly share code, notes, and snippets.

@MarekBodinger
Created August 6, 2024 12:00
Show Gist options
  • Save MarekBodinger/ca33ae123cb2844c4426d1dc7d26b505 to your computer and use it in GitHub Desktop.
Save MarekBodinger/ca33ae123cb2844c4426d1dc7d26b505 to your computer and use it in GitHub Desktop.
Open current URL in Jina AI
//bookmarklet_title:Open in Jina AI
window.open(`https://r.jina.ai/${window.location.href}`, '_blank');
@davidldennison
Copy link

Nice! Here's mine that you might find useful:

javascript: (function() { window.open(https://r.jina.ai/${encodeURIComponent(window.location.href)}, '_blank'); })();

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment