-1

Is it possible to instruct Firefox to hide the information contained in window.screen?

According to this paper [1], it can be used for tracking purposes.

Thank you.

[1] https://panopticlick.eff.org/browser-uniqueness.pdf

gulbrandr
  • 1,005
  • 1
  • 9
  • 16
  • I'd be more worried about the user agent string. There's not a lot you can do with a screen resolution. – Blender Jun 07 '13 at 20:27

1 Answers1

1

no, it's not possible. for example:

 screen.width=999;
 alert(screen.width); // shows: 1920
dandavis
  • 16,370
  • 5
  • 40
  • 36