How to Install a Bookmarklet

  1. Show your bookmark bar: Ctrl+Shift+B (Win) / Cmd+Shift+B (Mac)
  2. Drag the blue button directly onto the bookmark bar
  3. Navigate to any webpage and click the bookmarklet to run it

Screenshot Page

Opens the current page in a new tab via thum.io to generate a live screenshot preview.

View code
javascript:(function(){window.open('https://image.thum.io/get/width/1280/'+encodeURIComponent(window.location.href),'_blank');})()

Print to PDF

Instantly opens your browser's print dialog. Select 'Save as PDF' as the destination.

Print to PDF
View code
javascript:(function(){window.print();})()

Copy Page URL

Copies the current page's full URL to your clipboard with one click.

Copy Page URL
View code
javascript:(function(){navigator.clipboard.writeText(window.location.href).then(function(){alert('URL copied: '+window.location.href);});})()

View Page Source (Clean)

Opens the page source in a new tab using the browser's built-in view-source protocol.

View code
javascript:(function(){window.open('view-source:'+window.location.href,'_blank');})()

Check OG Tags

Displays a popup showing all Open Graph meta tags found on the current page.

Check OG Tags
View code
javascript:(function(){var t=document.querySelectorAll('meta[property^="og:"],meta[name^="twitter:"]');var r=[];t.forEach(function(m){r.push((m.getAttribute('property')||m.getAttribute('name'))+': '+(m.getAttribute('content')||''));});alert(r.length?r.join('
'):'No OG or Twitter Card tags found on this page.');;})()

Are Bookmarklets Safe?

Yes. These bookmarklets contain only simple, readable JavaScript that runs in your browser. You can inspect the code before using it — click "Copy code" to see the full source.

Browser Support

Bookmarklets work in all major browsers: Chrome, Firefox, Safari, and Edge. Some content security policies on specific sites may block bookmarklet execution.