Last active
August 24, 2024 20:05
-
-
Save Julioevm/68275ea1324046caedfdfb2ba0e9b710 to your computer and use it in GitHub Desktop.
Kagi summarize bookmarklet
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() { | |
let currentUrl = encodeURIComponent(window.location.href); | |
window.open('https://kagi.com/summarizer/index.html?url=' + currentUrl + '&target_language=&summary=takeaway'); | |
})(); |
Awesome, thanks for fixing it 👍
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The saved bookmarklet script code has the quotes turned into %27, I messed up when pasting it here