How to capture the HTML of the open page in Chrome with Delphi?

2

I need to capture through delphi the source code of a particular HTML page that was currently open in google chrome. In Internet Explorer I know how it does, from chrome I do not think anything like it. Any suggestions?

    
asked by anonymous 12.05.2014 / 04:31

1 answer

1

I suggest trying to create an extension. I believe it is possible to interact with localhost, then you create a server and the extension serves as a client.

Another option, since your focus seems to be Windows, is to try (do not know if that's possible) to make the extension interact with the program via the "command line."

A third option (easier and less invasive) is to create a bookmarklet.

    
12.05.2014 / 05:37