puppeteer-extra-plugin
Advanced tools
Comparing version 2.0.2 to 2.0.3
{ | ||
"name": "puppeteer-extra-plugin", | ||
"version": "2.0.2", | ||
"version": "2.0.3", | ||
"description": "Base class for puppeteer-extra plugins.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -34,3 +34,3 @@ # puppeteer-extra-plugin | ||
### [PuppeteerExtraPlugin](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L47-L437) | ||
### [PuppeteerExtraPlugin](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L47-L437) | ||
@@ -87,3 +87,3 @@ Base class for `puppeteer-extra` plugins. | ||
#### [name](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L71-L71) | ||
#### [name](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L71-L71) | ||
@@ -107,3 +107,3 @@ Plugin name (required). | ||
#### [defaults](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L95-L95) | ||
#### [defaults](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L95-L95) | ||
@@ -137,3 +137,3 @@ - **See: opts** | ||
#### [requirements](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L120-L120) | ||
#### [requirements](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L120-L120) | ||
@@ -168,3 +168,3 @@ Plugin requirements (optional). | ||
#### [dependencies](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L135-L135) | ||
#### [dependencies](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L135-L135) | ||
@@ -188,3 +188,3 @@ Plugin dependencies (optional). | ||
#### [data](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L170-L170) | ||
#### [data](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L170-L170) | ||
@@ -229,3 +229,3 @@ - **See: getDataFromPlugins** | ||
#### [opts](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L188-L188) | ||
#### [opts](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L188-L188) | ||
@@ -253,3 +253,3 @@ - **See: defaults** | ||
#### [debug](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L208-L208) | ||
#### [debug](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L208-L208) | ||
@@ -279,3 +279,3 @@ Convenience debug logger based on the [debug] module. | ||
#### [beforeLaunch](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L226-L226) | ||
#### [beforeLaunch](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L226-L226) | ||
@@ -303,3 +303,3 @@ Can be used to modify the puppeteer launch options by modifying or returning them. | ||
#### [afterLaunch](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L255-L255) | ||
#### [afterLaunch](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L255-L255) | ||
@@ -339,3 +339,3 @@ After the browser has launched. | ||
#### [onTargetCreated](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L264-L264) | ||
#### [onTargetCreated](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L264-L264) | ||
@@ -352,3 +352,3 @@ Called when a target is created, for example when a new page is opened by window.open or browser.newPage. | ||
#### [onPageCreated](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L283-L283) | ||
#### [onPageCreated](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L283-L283) | ||
@@ -378,3 +378,3 @@ Same as `onTargetCreated` but prefiltered to only contain Pages, for convenience. | ||
#### [onTargetChanged](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L292-L292) | ||
#### [onTargetChanged](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L292-L292) | ||
@@ -391,3 +391,3 @@ Called when the url of a target changes. | ||
#### [onTargetDestroyed](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L301-L301) | ||
#### [onTargetDestroyed](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L301-L301) | ||
@@ -404,3 +404,3 @@ Called when a target is destroyed, for example when a page is closed. | ||
#### [onDisconnected](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L309-L309) | ||
#### [onDisconnected](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L309-L309) | ||
@@ -417,3 +417,3 @@ Called when Puppeteer gets disconnected from the Chromium instance. | ||
#### [onClose](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L318-L318) | ||
#### [onClose](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L318-L318) | ||
@@ -430,3 +430,3 @@ Sometimes `onDisconnected` is not catching all exit scenarios. | ||
#### [onPluginRegistered](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L325-L325) | ||
#### [onPluginRegistered](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L325-L325) | ||
@@ -441,3 +441,3 @@ After the plugin has been registered in `puppeteer-extra`. | ||
#### [getDataFromPlugins](https://github.com/berstend/puppeteer-extra/blob/139d9ecf97a46dc383adede213e1a4c707160dca/packages/puppeteer-extra-plugin/index.js#L338-L338) | ||
#### [getDataFromPlugins](https://github.com/berstend/puppeteer-extra/blob/2fefa134bd3d12f4a1e9f7ed86f44443b38d1098/packages/puppeteer-extra-plugin/index.js#L338-L338) | ||
@@ -444,0 +444,0 @@ - **See: data** |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package