Chrome / Javascript extension - detecting the user's language in the Chrome browser

I need to know:

image http://img338.imageshack.us/img338/315/19999578.gif

self-evident image :)

Is this language selection possible in the Chrome browser?

+3
source share
3 answers

Will the internalization API work? http://code.google.com/chrome/extensions/i18n.html

Windows Language, NPAPI http://code.google.com/chrome/extensions/npapi.html, . , Windows .

i18n, , http://crbug.com/new

+5

alert(window.navigator.language);//works both in Mozilla and chrome
alert(navigator.language);//works both in Mozilla and chrome
alert(navigator.userLanguage);// Works in IE

JSfiddle

+2

- , API- i18n, navigator.language.

+1

Source: https://habr.com/ru/post/1762009/


All Articles