Skip to content

Instantly share code, notes, and snippets.

@palimadra
Forked from pamelafox/screenshot.js
Last active November 2, 2016 13:29
Show Gist options
  • Save palimadra/734d91c59c994ffa82c4 to your computer and use it in GitHub Desktop.
Save palimadra/734d91c59c994ffa82c4 to your computer and use it in GitHub Desktop.
// How to add a bookmarklet to Chrome: https://www.google.com/webhp?sourceid=chrome-instant&ion=1&espv=2&ie=UTF-8#q=chrome%20bookmarklet
javascript:(function getScreenshot() {var openScreenshot = function(e) {window.open(e.originalEvent.data);}; $(window).unbind("message.getScreenshot", openScreenshot); $(window).bind("message.getScreenshot", openScreenshot); ScratchpadUI.liveEditor.postFrame({ screenshot: true, screenshotSize: 400 });})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment