Launch puppeteer with arbitrary user preferences.
npm install puppeteer-extra-plugin-user-preferences> A plugin for puppeteer-extra.
``bash`
yarn add puppeteer-extra-plugin-user-preferences
#### Table of Contents
- Plugin
Extends: PuppeteerExtraPlugin
Launch puppeteer with arbitrary user preferences.
The user defined preferences will be merged with preferences set by other plugins.
Plugins can add user preferences by exposing a data entry with the name userPreferences.
Overview:
Type: function (opts)
- opts Object Options (optional, default {})opts.userPrefs
- Object An object containing the preferences. (optional, default {})
Example:
`javascript``
const puppeteer = require('puppeteer-extra')
puppeteer.use(require('puppeteer-extra-plugin-user-preferences')({userPrefs: {
webkit: {
webprefs: {
default_font_size: 22
}
}
}}))
const browser = await puppeteer.launch()
*