1

I want to get information - like the number of monitors the client is using. I need access to system calls and I understand that since the browser is sandboxed, it can't execute sys calls.

What other options do I have to do this (other than the client installing an app on the desktop)?

Ali
  • 56
  • 5

2 Answers2

1

I think this is not possible, because it's not safe for users to allow this kind of information.

Some info about sys is available in navigator object. A good start to check what you need there.

1

I found that this can be done using extensions. Chrome allows for access to such information through its "activeTab", "tabs", and "system.display" permissions found here https://developer.chrome.com/extensions/declare_permissions.

In general, extensions allow the website to have more control over the visiting computer and access to data to/from it.

Dharman
  • 30,962
  • 25
  • 85
  • 135
Ali
  • 56
  • 5