CINXE.COM
Browser Redirect
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>Browser Redirect</title> <meta name="description" content="Determining your browser and sending you to the correct instructions page" /> <script src="/assets/js/scripts_6876243bd9.js"></script> <script> var s = [ { "url": "/disable-cookies/windows/chrome/", "fm": "Windows", "bm": "Chrome" }, { "url": "/disable-cookies/windows/ie/", "fm": "Windows", "bm": "IE" }, { "url": "/disable-cookies/windows/firefox/", "fm": "Windows", "bm": "Firefox" }, { "url": "/disable-cookies/windows/edge/", "fm": "Windows", "bm": "Microsoft Edge" }, { "url": "/disable-cookies/macos/chrome/", "fm": "OS X", "bm": "Chrome" }, { "url": "/disable-cookies/macos/brave/", "fm": "OS X", "bm": "Brave" }, { "url": "/disable-cookies/macos/firefox/", "fm": "OS X", "bm": "Firefox" }, { "url": "/disable-cookies/macos/safari/", "fm": "OS X", "bm": "Safari" }, { "url": "/disable-cookies/linux/chrome/", "fm": "Linux", "bm": "Chrome" }, { "url": "/disable-cookies/linux/firefox/", "fm": "Linux", "bm": "Firefox" }, { "url": "/disable-cookies/ios/firefox/", "fm": "iOS", "bm": "Firefox" }, { "url": "/disable-cookies/ios/safari/", "fm": "iOS", "bm": "Safari" }, { "url": "/disable-cookies/android/firefox/", "fm": "Android", "bm": "Firefox" }, { "url": "/disable-cookies/android/chrome/", "fm": "Android", "bm": "Chrome" } ] var redirect = function(){ window.location.href = "/platforms/"; } try { var redirected = false; for (i in s) { if(s[i].bm != "" && s[i].fm != "" && platform.name.startsWith(s[i].bm) && platform.os.family.startsWith(s[i].fm)){ window.location.href = s[i].url; redirected = true; break; } } if(redirected === false){ window.location.href = "/disable-cookies/windows/chrome/" } } catch(error){ window.location.href = "/disable-cookies/windows/chrome/" } </script> </head> <body> <p style="text-align: center;">Detecting your browser...</p> </body> </html>