项目作者: mikeludemann

项目描述 :
Getting JavaScript navigator informations
高级语言: JavaScript
项目地址: git://github.com/mikeludemann/navigationJS.git
创建时间: 2017-11-09T20:46:17Z
项目社区:https://github.com/mikeludemann/navigationJS

开源协议:MIT License

下载


navigatorJS

Getting the JavaScript ‘navigator’ features

Checking informations and search a contains string from user agent

  1. Get Browser Version
  2. navigation.browserVersion();
  3. Get Browser Code Name
  4. navigation.browserCodeName();
  5. Get Browser Name
  6. navigation.browserName();
  7. Get Browser Cookie is enabled
  8. navigation.browserCookieEnabled();
  9. Get Browser Language
  10. navigation.browserLanguage();
  11. Get Browser Online ("Status")
  12. navigation.browserOnline();
  13. Get Browser Platform
  14. navigation.browserPlatform();
  15. Get Browser Product
  16. navigation.browserProduct();
  17. Get support from Geolocation
  18. navigation.browserGeolocation();
  19. Get User Agent
  20. navigation.browserUserAgent();
  21. Search a validate string in the complete user agent and get boolean value of 'true' or 'false'
  22. navigation.contains(text);