(Javascript) List of "navigator.appName" values ​​for all browsers?

What values ​​are returned for navigator.appName values ​​for all common browsers?

The value of navigator.appName for Firefox: Netscape .

What values ​​are returned for IE, Firefox, Google Chrome, Safari, Opera, Flock, etc.?

+7
source share
2 answers

If you trust a user agent, you can use this website: http://www.useragentstring.com/

It provides an API to analyze your current browser. It also contains data about each user agent that you can imagine.

+7
source

Just found out that the preview of IE11 changed the value of navigator.appName:

before IE11, this value is:

 "Microsoft Internet Explorer" 

now with a preview of IE11, this value has been changed to:

 "Netscape" 

not sure why MS did this and it will not be permanent after IE11

+9
source

All Articles