Last active
December 7, 2024 18:39
-
-
Save adityadaniel/f7a182fc5a48665c2f01afb4a1a852b4 to your computer and use it in GitHub Desktop.
Bookmarklet to turn web page into Markdown using 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
javascript:(function(){ | |
const currentUrl = window.location.href; | |
const modifiedUrl = `https://r.jina.ai/${currentUrl}`; | |
window.location.href = modifiedUrl; | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment