Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Taking full page screenshot with a Chrome extension

Is there away to capture a screenshot of the full page, including what is below the fold, in a Chrome Extension?

The captureVisibleTab seems to be limited to what is displayed within the visible area.

like image 549
GeorgeU Avatar asked Sep 18 '25 15:09

GeorgeU


1 Answers

The standard approach seems to be to scroll around the page and capture screenshots at each part and then stick them all together. The official google screen capture plugin does this, but I found it to be buggy (at least on Mac OSX), so I wrote my own full page screen capture extension.

Source code here (relevant code in page.js and popup.js).

like image 127
MrColes Avatar answered Sep 20 '25 06:09

MrColes