Created
August 6, 2024 12:00
-
-
Save MarekBodinger/ca33ae123cb2844c4426d1dc7d26b505 to your computer and use it in GitHub Desktop.
Open current URL in Jina AI
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//bookmarklet_title:Open in Jina AI | |
window.open(`https://r.jina.ai/${window.location.href}`, '_blank'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Nice! Here's mine that you might find useful:
javascript: (function() { window.open(
https://r.jina.ai/${encodeURIComponent(window.location.href)}
, '_blank'); })();