|
|
|
Show HN: Bookmarklet to Summarize Any Page Using ChatGPT
|
|
8 points
by shafkathullah
451 days ago
|
|
I made a tiny bookmarklet that opens ChatGPT in a new tab and auto-fills the prompt to summarize the current page you're on. Just drag this to your bookmarks bar: javascript:(function(){
const url = encodeURIComponent(window.location.href);
window.open(`https://chatgpt.com/?q=summarize this page ${url}`, '_blank');
})(); Use it while browsing articles or docs — click once and ChatGPT gives you a summary. Super handy for speeding through content! |
|