Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p><strong>It can be done, with some limitations</strong>. There are some techniques, and these are exactly how many extensions do screenshots. From your description it seems that you aren't looking for a generic, client side solution to be deployed, but just something that a user or some users could use and submit, so I guess using an extension would be fine.</p> <p><strong>Chrome:</strong></p> <p>I can point you to my opensource Chrome extension, Blipshot, that does exactly that: <a href="https://github.com/folletto/Blipshot" rel="nofollow">https://github.com/folletto/Blipshot</a></p> <p>Just to give some background:</p> <ol> <li>You can do that, as far as I know, only from inside an extension, since it uses an internal function.</li> <li>The function is <code>chrome.tabs.captureVisibleTab</code> and require access to the tabs from the manifest.</li> <li>The function grabs only the visible part of the active tab, so if you need just that it's fine. If you need something more, than, you should have a look at the whole script, since it's quite tricky to get the full page screenshot until Google fixes <a href="http://http://code.google.com/p/chromium/issues/detail?id=45209" rel="nofollow">Bug #45209</a>.</li> </ol> <p><strong>Firefox:</strong></p> <p>In Firefox since 1.5 you can build extensions that use a custom extension of canvas, <code>drawWindow</code>, that is more powerful than the <code>chrome.tabs.captureVisibleTab</code> equivalent of Chrome. Some informations are here: <a href="https://developer.mozilla.org/en/Drawing_Graphics_with_Canvas" rel="nofollow">https://developer.mozilla.org/en/Drawing_Graphics_with_Canvas</a></p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload