i've tried manipulating it using Process.GetProcessesByName("firefox"). But i can only detect the opening and closing of the browser.
-can somebody help me to detect the when the tabs in the browser are closed.
i've tried manipulating it using Process.GetProcessesByName("firefox"). But i can only detect the opening and closing of the browser.
-can somebody help me to detect the when the tabs in the browser are closed.
No, it's not possible to do that from separate application, in C# or anything else.
You have to make browser addin and separate for every browser. Even for IE it's not recommended to make addin in .NET (see https://stackoverflow.com/a/1161529/351383).
For IE here is a excelent post about making addins :
How to get started with developing Internet Explorer extensions?
For firefox you have to make firefox addon, see this link :
https://addons.mozilla.org/en-us/developers/
Chrome :