Print the whole content in an HTML frame using chrome

06
2013-12
  • YankeeWhiskey

    There exists chrome plugins for capture the whole page, not just the currently visible part, like creen-capture-by-google. But that doesn't work with page having frames. I need the whole content in the frame saved as PDF or PNG. Is there anyway to do that with Chrome or other browsers? I'm using Mac OS.

  • Answers
  • Darth Android

    You could load the frame itself into a tab, and then use one of the plugins to capture the entire frame that way.


  • Related Question

    firefox - What's A Good Real Time Html Editing Extension?
  • user23392

    i always like to real-time edit a web page source in the browser and updated as i type, but firebug really sucks, i can't insert scripts in the current page, some times the changes i type aren't updated at all, Is there any robust firefox/chrome extension for that?

    i try to temporarely edit/add code to an existing web page in the internet, not a local one

    Thanks


  • Related Answers
  • Sarfraz

    Hi, i always like to real-time edit a web page source in the browser and updated as i type, but firebug really sucks, i can't insert scripts in the current page, some times the changes i type aren't updated at all, Is there any robust firefox/chrome extension for that?

    It never behaves the way you mention, probably there is some other issue. Firebug seems to be the best bet out there so far.

    P.S. i try to temporarely edit an existing web page in the internet, not a local one

    Yes, you can do that too.

    Finally, here is the community link and possible solutions to various questions.

  • helloandre

    Chrome has a built-in DOM Inspector, script editor/debugger; it comes with Webkit (what Chrome and Safari are built on).

    Right click anywhere on the page and click on "Inspect Element". That will bring up your HTML that is currently on the page. You can double click any element and it will let you edit it.

    This also has some pretty powerful features that you can use. These tutorials about javascript debugging and the general overview of the developer tools are really helpful.