2020-11-24 04:26:43 +01:00
|
|
|
// Freezes all intrinsics
|
2020-12-10 18:33:04 +01:00
|
|
|
try {
|
|
|
|
// eslint-disable-next-line no-undef,import/unambiguous
|
|
|
|
lockdown({
|
|
|
|
consoleTaming: 'unsafe',
|
|
|
|
errorTaming: 'unsafe',
|
|
|
|
mathTaming: 'unsafe',
|
|
|
|
dateTaming: 'unsafe',
|
|
|
|
})
|
|
|
|
} catch (error) {
|
|
|
|
// If the `lockdown` call throws an exception, it interferes with the
|
|
|
|
// contentscript injection on some versions of Firefox. The error is
|
|
|
|
// caught and logged here so that the contentscript still gets injected.
|
|
|
|
// This affects Firefox v56 and Waterfox Classic
|
|
|
|
console.error('Lockdown failed:', error)
|
|
|
|
if (window.sentry && window.sentry.captureException) {
|
|
|
|
window.sentry.captureException(error)
|
|
|
|
}
|
|
|
|
}
|