Rename to hkt.sh
This commit is contained in:
44
node_modules/puppeteer-extra-plugin-stealth/evasions/window.outerdimensions/index.js
generated
vendored
Normal file
44
node_modules/puppeteer-extra-plugin-stealth/evasions/window.outerdimensions/index.js
generated
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
'use strict'
|
||||
|
||||
const { PuppeteerExtraPlugin } = require('puppeteer-extra-plugin')
|
||||
|
||||
/**
|
||||
* Fix missing window.outerWidth/window.outerHeight in headless mode
|
||||
* Will also set the viewport to match window size, unless specified by user
|
||||
*/
|
||||
class Plugin extends PuppeteerExtraPlugin {
|
||||
constructor(opts = {}) {
|
||||
super(opts)
|
||||
}
|
||||
|
||||
get name() {
|
||||
return 'stealth/evasions/window.outerdimensions'
|
||||
}
|
||||
|
||||
async onPageCreated(page) {
|
||||
// Chrome returns undefined, Firefox false
|
||||
await page.evaluateOnNewDocument(() => {
|
||||
try {
|
||||
if (window.outerWidth && window.outerHeight) {
|
||||
return // nothing to do here
|
||||
}
|
||||
const windowFrame = 85 // probably OS and WM dependent
|
||||
window.outerWidth = window.innerWidth
|
||||
window.outerHeight = window.innerHeight + windowFrame
|
||||
} catch (err) {}
|
||||
})
|
||||
}
|
||||
|
||||
async beforeLaunch(options) {
|
||||
// Have viewport match window size, unless specified by user
|
||||
// https://github.com/GoogleChrome/puppeteer/issues/3688
|
||||
if (!('defaultViewport' in options)) {
|
||||
options.defaultViewport = null
|
||||
}
|
||||
return options
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = function(pluginConfig) {
|
||||
return new Plugin(pluginConfig)
|
||||
}
|
||||
Reference in New Issue
Block a user