1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
"use strict";
/**
* Bug 1472075 - Build UA override for Bank of America for OSX & Linux
* WebCompat issue #2787 - https://webcompat.com/issues/2787
*
* BoA is showing a red warning to Linux and macOS users, while accepting
* Windows users without warning. From our side, there is no difference here
* and we receive a lot of user complains about the warnings, so we spoof
* as Firefox on Windows in those cases.
*/
/* globals exportFunction */
if (!navigator.platform.includes("Win")) {
console.info(
"The user agent has been overridden for compatibility reasons. See https://webcompat.com/issues/2787 for details."
);
const WINDOWS_UA = navigator.userAgent.replace(
/\(.*; rv:/i,
"(Windows NT 10.0; Win64; x64; rv:"
);
Object.defineProperty(window.navigator.wrappedJSObject, "userAgent", {
get: exportFunction(function() {
return WINDOWS_UA;
}, window),
set: exportFunction(function() {}, window),
});
Object.defineProperty(window.navigator.wrappedJSObject, "appVersion", {
get: exportFunction(function() {
return "appVersion";
}, window),
set: exportFunction(function() {}, window),
});
Object.defineProperty(window.navigator.wrappedJSObject, "platform", {
get: exportFunction(function() {
return "Win64";
}, window),
set: exportFunction(function() {}, window),
});
}
|