1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace XUnity.AutoTranslator.Plugin.Core.Constants
- {
- /// <summary>
- /// Class defining user agents for various browsers.
- ///
- /// Updated 2019-02-09.
- /// </summary>
- public static class UserAgents
- {
- /// <summary>
- /// Latest Chrome Win10 user-agent as of 2019-02-09.
- /// </summary>
- public static readonly string Chrome_Win10_Latest = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36";
- /// <summary>
- /// Latest Chrome Win7 user-agent as of 2019-02-09.
- /// </summary>
- public static readonly string Chrome_Win7_Latest = "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/71.0.3578.98 Safari/537.36";
- /// <summary>
- /// Latest Firefox Win10 user-agent as of 2019-02-09.
- /// </summary>
- public static readonly string Firefox_Win10_Latest = "Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:64.0) Gecko/20100101 Firefox/64.0";
- /// <summary>
- /// Latest Edge Win10 user-agent as of 2019-02-09.
- /// </summary>
- public static readonly string Edge_Win10_Latest = "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134";
- }
- }
|