omegafox/settings/properties.json
daijro 5263cb6305 Add locale spoofing #16 beta.8
Spoof the Intl API, headers, and system locale values.
Added the following properties:
- locale:language
- locale:region
- locale:script
2024-09-28 17:09:22 -05:00

65 lines
3.4 KiB
JSON

[
{ "property": "navigator.userAgent", "type": "str" },
{ "property": "navigator.doNotTrack", "type": "str" },
{ "property": "navigator.appCodeName", "type": "str" },
{ "property": "navigator.appName", "type": "str" },
{ "property": "navigator.appVersion", "type": "str" },
{ "property": "navigator.oscpu", "type": "str" },
{ "property": "navigator.language", "type": "str" },
{ "property": "navigator.languages", "type": "array" },
{ "property": "navigator.platform", "type": "str" },
{ "property": "navigator.hardwareConcurrency", "type": "uint" },
{ "property": "navigator.product", "type": "str" },
{ "property": "navigator.productSub", "type": "str" },
{ "property": "navigator.maxTouchPoints", "type": "uint" },
{ "property": "navigator.cookieEnabled", "type": "bool" },
{ "property": "navigator.globalPrivacyControl", "type": "bool" },
{ "property": "navigator.buildID", "type": "str" },
{ "property": "navigator.onLine", "type": "bool" },
{ "property": "screen.availHeight", "type": "uint" },
{ "property": "screen.availWidth", "type": "uint" },
{ "property": "screen.availTop", "type": "uint" },
{ "property": "screen.availLeft", "type": "uint" },
{ "property": "screen.height", "type": "uint" },
{ "property": "screen.width", "type": "uint" },
{ "property": "screen.colorDepth", "type": "uint" },
{ "property": "screen.pixelDepth", "type": "uint" },
{ "property": "screen.pageXOffset", "type": "double" },
{ "property": "screen.pageYOffset", "type": "double" },
{ "property": "window.scrollMinX", "type": "int" },
{ "property": "window.scrollMinY", "type": "int" },
{ "property": "window.scrollMaxX", "type": "int" },
{ "property": "window.scrollMaxY", "type": "int" },
{ "property": "window.outerHeight", "type": "uint" },
{ "property": "window.outerWidth", "type": "uint" },
{ "property": "window.innerHeight", "type": "uint" },
{ "property": "window.innerWidth", "type": "uint" },
{ "property": "window.screenX", "type": "int" },
{ "property": "window.screenY", "type": "int" },
{ "property": "window.history.length", "type": "uint" },
{ "property": "window.devicePixelRatio", "type": "double" },
{ "property": "document.body.clientWidth", "type": "uint" },
{ "property": "document.body.clientHeight", "type": "uint" },
{ "property": "document.body.clientTop", "type": "uint" },
{ "property": "document.body.clientLeft", "type": "uint" },
{ "property": "headers.User-Agent", "type": "str" },
{ "property": "headers.Accept-Language", "type": "str" },
{ "property": "headers.Accept-Encoding", "type": "str" },
{ "property": "webrtc:ipv4", "type": "str" },
{ "property": "webrtc:ipv6", "type": "str" },
{ "property": "pdfViewerEnabled", "type": "bool" },
{ "property": "webGl:renderer", "type": "str" },
{ "property": "webGl:vendor", "type": "str" },
{ "property": "battery:charging", "type": "bool" },
{ "property": "battery:chargingTime", "type": "double" },
{ "property": "battery:dischargingTime", "type": "double" },
{ "property": "battery:level", "type": "double" },
{ "property": "fonts", "type": "array" },
{ "property": "geolocation:latitude", "type": "double" },
{ "property": "geolocation:longitude", "type": "double" },
{ "property": "geolocation:accuracy", "type": "double" },
{ "property": "timezone", "type": "str" },
{ "property": "locale:language", "type": "str" },
{ "property": "locale:region", "type": "str" },
{ "property": "locale:script", "type": "str" }
]