You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

puppeteer-extra-plugin-minmax

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

puppeteer-extra-plugin-minmax

Minimize/maximize puppeteer browsers in real time!

1.1.2
latest
npmnpm
Version published
Weekly downloads
210
19.32%
Maintainers
1
Weekly downloads
 
Created
Source

Minimize and Maximize Puppeteer Browsers!

This is a plugin for puppeteer-extra that allows you to minimize and maximize puppeteer browsers in real time.

Install

yarn add puppeteer-extra-plugin-minmax

Usage

const puppeteer = require("puppeteer-extra");
puppeteer.use(require("puppeteer-extra-plugin-minmax")());

async function test() {
  const browser = await puppeteer.launch({ headless: false });
  const page = await browser.newPage();

  await page.minimize();
  await page.maximize();

  await browser.close();
  console.log("all done");
}

test();

The key lines here are page.minimize() and page.maximize(). These minimize and maximize the page respectively.

Keywords

puppeteer

FAQs

Package last updated on 06 Jun 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts