Reputation: 118
I want to get the URL from all open tabs. I have searched on Google but could not find any luck. I want to read and log the URL from all open tab from Chrome And IE.
I am using C# windows form application.
Thanks in Advance.. Umang
Upvotes: 0
Views: 1771
Reputation: 44605
I understand what you need to do but I would be surprised if IE and Chrome would expose the tabs and the urls in a simple and similar way to external applications, I think the way to go is to build a Chrome extension and an IE plugin or Addin to get those information while running within the browser scope, then you can send this info to an external application or to a web service etc... you will find a way to get the info out once you have got this url list inside your own code running with the browser.
see here for some starting point / ideas
Chrome extensions: http://code.google.com/chrome/extensions/index.html
IE development: http://msdn.microsoft.com/en-us/library/bb250436(VS.85).aspx
Upvotes: 2