2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								# webContents
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-04-22 10:30:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  Render and control web pages.
 
							 
						 
					
						
							
								
									
										
										
										
											2016-04-21 15:35:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-23 11:20:56 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Process: [Main ](../glossary.md#main-process )
							 
						 
					
						
							
								
									
										
										
										
											2016-11-03 10:26:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-22 08:20:43 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`webContents`  is an [EventEmitter][event-emitter].
							 
						 
					
						
							
								
									
										
										
										
											2015-08-24 15:41:02 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								It is responsible for rendering and controlling a web page and is a property of
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the [`BrowserWindow` ](browser-window.md ) object. An example of accessing the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`webContents`  object:
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ width: 800, height: 1500 })
							 
						 
					
						
							
								
									
										
										
										
											2023-08-10 11:55:52 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.loadURL('https://github.com')
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const contents = win.webContents
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(contents)
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-28 07:55:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Navigation Events
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Several events can be used to monitor navigations as they occur within a `webContents` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								### Document Navigations
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								When a `webContents`  navigates to another page (as opposed to an [in-page navigation ](web-contents.md#in-page-navigation )), the following events will be fired.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-start-navigation` ](web-contents.md#event-did-start-navigation )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`will-frame-navigate` ](web-contents.md#event-will-frame-navigate )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`will-navigate` ](web-contents.md#event-will-navigate ) (only fired when main frame navigates)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`will-redirect` ](web-contents.md#event-will-redirect ) (only fired when a redirect happens during navigation)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-redirect-navigation` ](web-contents.md#event-did-redirect-navigation ) (only fired when a redirect happens during navigation)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-frame-navigate` ](web-contents.md#event-did-frame-navigate )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-navigate` ](web-contents.md#event-did-navigate ) (only fired when main frame navigates)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Subsequent events will not fire if `event.preventDefault()`  is called on any of the cancellable events.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								### In-page Navigation
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								In-page navigations don't cause the page to reload, but instead navigate to a location within the current page. These events are not cancellable. For an in-page navigations, the following events will fire in this order:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-start-navigation` ](web-contents.md#event-did-start-navigation )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  [`did-navigate-in-page` ](web-contents.md#event-did-navigate-in-page )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								### Frame Navigation
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The [`will-navigate` ](web-contents.md#event-will-navigate ) and [`did-navigate` ](web-contents.md#event-did-navigate ) events only fire when the [mainFrame ](web-contents.md#contentsmainframe-readonly ) navigates.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If you want to also observe navigations in `<iframe>` s, use [`will-frame-navigate` ](web-contents.md#event-will-frame-navigate ) and [`did-frame-navigate` ](web-contents.md#event-did-frame-navigate ) events.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Methods
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:54:18 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								These methods can be accessed from the `webContents`  module:
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { webContents } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(webContents)
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:54:18 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `webContents.getAllWebContents()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-25 12:59:30 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `WebContents[]`  - An array of all `WebContents`  instances. This will contain web contents
							 
						 
					
						
							
								
									
										
										
										
											2016-08-22 14:11:03 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								for all windows, webviews, opened devtools, and devtools extension background pages.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								### `webContents.getFocusedWebContents()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-24 22:28:21 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `WebContents | null`  - The web contents that is focused in this application, otherwise
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								returns `null` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-30 22:25:04 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `webContents.fromId(id)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `id`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-24 22:28:21 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `WebContents | undefined`  - A WebContents instance with the given ID, or
							 
						 
					
						
							
								
									
										
										
										
											2020-11-23 09:21:00 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`undefined`  if there is no WebContents associated with the given ID.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-30 22:25:04 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-09-26 12:37:08 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `webContents.fromFrame(frame)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frame`  WebFrameMain
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-24 22:28:21 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `WebContents | undefined`  - A WebContents instance with the given WebFrameMain, or
							 
						 
					
						
							
								
									
										
										
										
											2022-09-26 12:37:08 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`undefined`  if there is no WebContents associated with the given WebFrameMain.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-08-27 17:01:24 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### `webContents.fromDevToolsTargetId(targetId)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `targetId`  string - The Chrome DevTools Protocol [TargetID ](https://chromedevtools.github.io/devtools-protocol/tot/Target/#type-TargetID ) associated with the WebContents instance.
							 
						 
					
						
							
								
									
										
										
										
											2021-08-27 17:01:24 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-24 22:28:21 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `WebContents | undefined`  - A WebContents instance with the given TargetID, or
							 
						 
					
						
							
								
									
										
										
										
											2021-08-27 17:01:24 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`undefined`  if there is no WebContents associated with the given TargetID.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								When communicating with the [Chrome DevTools Protocol ](https://chromedevtools.github.io/devtools-protocol/ ),
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								it can be useful to lookup a WebContents instance based on its assigned TargetID.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								async function lookupTargetId (browserWindow) {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const wc = browserWindow.webContents
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  await wc.debugger.attach('1.3')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const { targetInfo } = await wc.debugger.sendCommand('Target.getTargetInfo')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const { targetId } = targetInfo
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  const targetWebContents = await wc.fromDevToolsTargetId(targetId)
							 
						 
					
						
							
								
									
										
										
										
											2021-08-27 17:01:24 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								}
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								## Class: WebContents
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-22 14:11:03 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  Render and control the contents of a BrowserWindow instance.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-06-15 13:50:31 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Process: [Main ](../glossary.md#main-process )< br  /> 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								_This class is not exported from the `'electron'`  module. It is only available as a return value of other methods in the Electron API._
							 
						 
					
						
							
								
									
										
										
										
											2016-11-03 11:50:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### Instance Events
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'did-finish-load'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the navigation is done, i.e. the spinner of the tab has stopped
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								spinning, and the `onload`  event was dispatched.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-fail-load'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `errorCode`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `errorDescription`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `validatedURL`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-03 15:10:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								This event is like `did-finish-load`  but emitted when the load failed.
							 
						 
					
						
							
								
									
										
										
										
											2022-03-17 05:45:55 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The full list of error codes and their meaning is available [here ](https://source.chromium.org/chromium/chromium/src/+/main:net/base/net_error_list.h ).
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-03 15:10:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-fail-provisional-load'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `errorCode`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `errorDescription`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `validatedURL`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2019-06-03 15:10:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event is like `did-fail-load`  but emitted when the load was cancelled
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								(e.g. `window.stop()`  was invoked).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-frame-finish-load'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a frame has done navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-start-loading'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Corresponds to the points in time when the spinner of the tab started spinning.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-stop-loading'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Corresponds to the points in time when the spinner of the tab stopped spinning.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'dom-ready'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-09-01 18:21:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when the document in the top-level frame is loaded.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-16 11:33:16 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'page-title-updated'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `title`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `explicitSet`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2019-05-16 11:33:16 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Fired when page title is set during navigation. `explicitSet`  is false when
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								title is synthesized from file url.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'page-favicon-updated'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `favicons`  string[] - Array of URLs.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when page receives favicon urls.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-09-13 10:49:34 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'content-bounds-updated'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `bounds`  [Rectangle ](structures/rectangle.md ) - requested new content bounds
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the page calls `window.moveTo` , `window.resizeTo`  or related APIs.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								By default, this will move the window. To prevent that behavior, call
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`event.preventDefault()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-create-window'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
									
										
										
										
											2020-11-24 18:52:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `window`  BrowserWindow
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `details`  Object
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - URL for the created window.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frameName`  string - Name given to the created window in the
							 
						 
					
						
							
								
									
										
										
										
											2020-11-24 18:52:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								     `window.open()`  call.
							 
						 
					
						
							
								
									
										
										
										
											2023-04-25 15:16:11 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `options`  [BrowserWindowConstructorOptions ](structures/browser-window-options.md ) - The options used to create the
							 
						 
					
						
							
								
									
										
										
										
											2021-04-21 10:55:17 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    BrowserWindow. They are merged in increasing precedence: parsed options
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    from the `features`  string from `window.open()` , security-related
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    webPreferences inherited from the parent, and options given by
							 
						 
					
						
							
								
									
										
										
										
											2020-11-24 18:52:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    [`webContents.setWindowOpenHandler` ](web-contents.md#contentssetwindowopenhandlerhandler ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    Unrecognized options are not filtered out.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `referrer`  [Referrer ](structures/referrer.md ) - The referrer that will be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    passed to the new window. May or may not result in the `Referer`  header
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    being sent, depending on the referrer policy.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `postBody`  [PostBody ](structures/post-body.md ) (optional) - The post data
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    that will be sent to the new window, along with the appropriate headers
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    that will be set. If no post data is to be sent, the value will be `null` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    Only defined when the window is being created by a form that set
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `target=_blank` .
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `disposition`  string - Can be `default` , `foreground-tab` ,
							 
						 
					
						
							
								
									
										
										
										
											2023-03-30 10:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    `background-tab` , `new-window`  or `other` .
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted _after_  successful creation of a window via `window.open`  in the renderer.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Not emitted if the creation of the window is canceled from
							 
						 
					
						
							
								
									
										
										
										
											2020-11-18 23:06:32 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[`webContents.setWindowOpenHandler` ](web-contents.md#contentssetwindowopenhandlerhandler ).
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								See [`window.open()` ](window-open.md ) for more details and how to use this in conjunction with `webContents.setWindowOpenHandler` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'will-navigate'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-02-28 11:08:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - The URL the frame is navigating to.
							 
						 
					
						
							
								
									
										
										
										
											2023-06-13 21:15:20 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isSameDocument`  boolean - This event does not fire for same document navigations using window.history api and reference fragment navigations.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    This property is always set to `false`  for this event.
							 
						 
					
						
							
								
									
										
										
										
											2023-02-28 11:08:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isMainFrame`  boolean - True if the navigation is taking place in a main frame.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - The frame to be navigated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `initiator`  WebFrameMain (optional) - The frame which initiated the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigation, which can be a parent frame (e.g. via `window.open`  with a
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    frame's name), or null if the navigation was not initiated by a frame. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    can also be null if the initiating frame was deleted before the event was
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `url`  string _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isInPlace`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-28 07:55:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a user or the page wants to start navigation on the main frame. It can happen when
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the `window.location`  object is changed or a user clicks a link in the page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event will not emit when the navigation is started programmatically with
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								APIs like `webContents.loadURL`  and `webContents.back` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								It is also not emitted for in-page navigations, such as clicking anchor links
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or updating the `window.location.hash` . Use `did-navigate-in-page`  event for
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								this purpose.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Calling `event.preventDefault()`  will prevent the navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'will-frame-navigate'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-03-28 07:55:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - The URL the frame is navigating to.
							 
						 
					
						
							
								
									
										
										
										
											2023-06-13 21:15:20 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isSameDocument`  boolean - This event does not fire for same document navigations using window.history api and reference fragment navigations.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    This property is always set to `false`  for this event.
							 
						 
					
						
							
								
									
										
										
										
											2023-03-28 07:55:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isMainFrame`  boolean - True if the navigation is taking place in a main frame.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - The frame to be navigated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `initiator`  WebFrameMain (optional) - The frame which initiated the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigation, which can be a parent frame (e.g. via `window.open`  with a
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    frame's name), or null if the navigation was not initiated by a frame. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    can also be null if the initiating frame was deleted before the event was
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a user or the page wants to start navigation in any frame. It can happen when
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								the `window.location`  object is changed or a user clicks a link in the page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-28 07:55:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Unlike `will-navigate` , `will-frame-navigate`  is fired when the main frame or any of its subframes attempts to navigate. When the navigation event comes from the main frame, `isMainFrame`  will be `true` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-24 15:41:02 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								This event will not emit when the navigation is started programmatically with
							 
						 
					
						
							
								
									
										
										
										
											2015-11-13 16:03:40 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								APIs like `webContents.loadURL`  and `webContents.back` .
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								It is also not emitted for in-page navigations, such as clicking anchor links
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or updating the `window.location.hash` . Use `did-navigate-in-page`  event for
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								this purpose.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-01 16:05:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Calling `event.preventDefault()`  will prevent the navigation.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-start-navigation'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-02-28 11:08:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - The URL the frame is navigating to.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isSameDocument`  boolean - Whether the navigation happened without changing
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    document. Examples of same document navigations are reference fragment
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigations, pushState/replaceState, and same page history navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isMainFrame`  boolean - True if the navigation is taking place in a main frame.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - The frame to be navigated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `initiator`  WebFrameMain (optional) - The frame which initiated the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigation, which can be a parent frame (e.g. via `window.open`  with a
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    frame's name), or null if the navigation was not initiated by a frame. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    can also be null if the initiating frame was deleted before the event was
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `url`  string _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isInPlace`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when any frame (including main) starts navigating.
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-09-16 01:42:43 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'will-redirect'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-02-28 11:08:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - The URL the frame is navigating to.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isSameDocument`  boolean - Whether the navigation happened without changing
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    document. Examples of same document navigations are reference fragment
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigations, pushState/replaceState, and same page history navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isMainFrame`  boolean - True if the navigation is taking place in a main frame.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - The frame to be navigated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `initiator`  WebFrameMain (optional) - The frame which initiated the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigation, which can be a parent frame (e.g. via `window.open`  with a
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    frame's name), or null if the navigation was not initiated by a frame. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    can also be null if the initiating frame was deleted before the event was
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `url`  string _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isInPlace`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
									
										
										
										
											2018-09-16 01:42:43 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-01-18 11:06:22 -06:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a server side redirect occurs during navigation.  For example a 302
							 
						 
					
						
							
								
									
										
										
										
											2018-09-16 01:42:43 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								redirect.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event will be emitted after `did-start-navigation`  and always before the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`did-redirect-navigation`  event for the same navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Calling `event.preventDefault()`  will prevent the navigation (not just the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								redirect).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'did-redirect-navigation'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-02-28 11:08:22 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  string - The URL the frame is navigating to.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isSameDocument`  boolean - Whether the navigation happened without changing
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    document. Examples of same document navigations are reference fragment
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigations, pushState/replaceState, and same page history navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isMainFrame`  boolean - True if the navigation is taking place in a main frame.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - The frame to be navigated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `initiator`  WebFrameMain (optional) - The frame which initiated the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    navigation, which can be a parent frame (e.g. via `window.open`  with a
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    frame's name), or null if the navigation was not initiated by a frame. This
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    can also be null if the initiating frame was deleted before the event was
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `url`  string _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isInPlace`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer _Deprecated_ 
							 
						 
					
						
							
								
									
										
										
										
											2018-09-16 01:42:43 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted after a server side redirect occurs during navigation.  For example a 302
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								redirect.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-08-18 15:55:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								This event cannot be prevented, if you want to prevent redirects you should
							 
						 
					
						
							
								
									
										
										
										
											2018-09-16 01:42:43 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								checkout out the `will-redirect`  event above.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-navigate'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-01-01 16:05:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `httpResponseCode`  Integer - -1 for non HTTP navigations
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `httpStatusText`  string - empty for non HTTP navigations
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a main frame navigation is done.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event is not emitted for in-page navigations, such as clicking anchor links
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or updating the `window.location.hash` . Use `did-navigate-in-page`  event for
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								this purpose.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'did-frame-navigate'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `httpResponseCode`  Integer - -1 for non HTTP navigations
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `httpStatusText`  string - empty for non HTTP navigations,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when any frame navigation is done.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event is not emitted for in-page navigations, such as clicking anchor links
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or updating the `window.location.hash` . Use `did-navigate-in-page`  event for
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								this purpose.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-01 16:05:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-navigate-in-page'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-01-01 16:05:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameProcessId`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `frameRoutingId`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when an in-page navigation happened in any frame.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 12:09:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								When in-page navigation happens, the page URL changes but does not cause
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								navigation outside of the page. Examples of this occurring are when anchor links
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								are clicked or when the DOM `hashchange`  event is triggered.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-01 16:05:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-04-27 19:28:48 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'will-prevent-unload'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a `beforeunload`  event handler is attempting to cancel a page unload.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Calling `event.preventDefault()`  will ignore the `beforeunload`  event handler
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								and allow the page to be unloaded.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow, dialog } = require('electron')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ width: 800, height: 600 })
							 
						 
					
						
							
								
									
										
										
										
											2017-04-27 19:28:48 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.on('will-prevent-unload', (event) => {
							 
						 
					
						
							
								
									
										
										
										
											2020-02-10 16:12:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  const choice = dialog.showMessageBoxSync(win, {
							 
						 
					
						
							
								
									
										
										
										
											2017-04-27 19:28:48 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    type: 'question',
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    buttons: ['Leave', 'Stay'],
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    title: 'Do you want to leave this site?',
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    message: 'Changes you made may not be saved.',
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    defaultId: 0,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    cancelId: 1
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
									
										
										
										
											2017-05-11 09:01:51 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  const leave = (choice === 0)
							 
						 
					
						
							
								
									
										
										
										
											2017-04-27 19:28:48 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  if (leave) {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    event.preventDefault()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-07 07:16:10 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								**Note:** This will be emitted for `BrowserViews`  but will _not_  be respected - this is because we have chosen not to tie the `BrowserView`  lifecycle to its owning BrowserWindow should one exist per the [specification ](https://developer.mozilla.org/en-US/docs/Web/API/Window/beforeunload_event ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-11 13:42:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'render-process-gone'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2023-08-17 01:52:15 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `details`  [RenderProcessGoneDetails ](structures/render-process-gone-details.md )
							 
						 
					
						
							
								
									
										
										
										
											2020-05-11 13:42:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-08-18 15:55:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when the renderer process unexpectedly disappears.  This is normally
							 
						 
					
						
							
								
									
										
										
										
											2020-05-11 13:42:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								because it was crashed or killed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-02 17:19:52 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'unresponsive'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the web page becomes unresponsive.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'responsive'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the unresponsive web page becomes responsive again.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'plugin-crashed'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `name`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `version`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a plugin process has crashed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'destroyed'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when `webContents`  is destroyed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-09-27 14:47:46 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'input-event'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `inputEvent`  [InputEvent ](structures/input-event.md )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when an input event is sent to the WebContents. See
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[InputEvent ](structures/input-event.md ) for details.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-12-06 14:41:18 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'before-input-event'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2017-11-28 18:15:15 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `input`  Object - Input properties.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `type`  string - Either `keyUp`  or `keyDown` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `key`  string - Equivalent to [KeyboardEvent.key][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `code`  string - Equivalent to [KeyboardEvent.code][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isAutoRepeat`  boolean - Equivalent to [KeyboardEvent.repeat][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `isComposing`  boolean - Equivalent to [KeyboardEvent.isComposing][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `shift`  boolean - Equivalent to [KeyboardEvent.shiftKey][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `control`  boolean - Equivalent to [KeyboardEvent.controlKey][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `alt`  boolean - Equivalent to [KeyboardEvent.altKey][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `meta`  boolean - Equivalent to [KeyboardEvent.metaKey][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `location`  number - Equivalent to [KeyboardEvent.location][keyboardevent].
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `modifiers`  string[] - See [InputEvent.modifiers ](structures/input-event.md ).
							 
						 
					
						
							
								
									
										
										
										
											2016-12-06 14:41:18 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted before dispatching the `keydown`  and `keyup`  events in the page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Calling `event.preventDefault`  will prevent the page `keydown` /`keyup`  events
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								and the menu shortcuts.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								To only prevent the menu shortcuts, use
							 
						 
					
						
							
								
									
										
										
										
											2020-04-02 09:32:18 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[`setIgnoreMenuShortcuts` ](#contentssetignoremenushortcutsignore ):
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ width: 800, height: 600 })
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.on('before-input-event', (event, input) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  // For example, only enable application menu keyboard shortcuts when
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  // Ctrl/Cmd are down.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.setIgnoreMenuShortcuts(!input.control & &  !input.meta)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2016-12-06 14:41:18 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-03-07 18:29:37 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'enter-html-full-screen'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the window enters a full-screen state triggered by HTML API.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'leave-html-full-screen'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the window leaves a full-screen state triggered by HTML API.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-14 08:40:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'zoom-changed'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
									
										
										
										
											2020-11-05 14:12:43 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-14 08:40:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `zoomDirection`  string - Can be `in`  or `out` .
							 
						 
					
						
							
								
									
										
										
										
											2019-05-14 08:40:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the user is requesting to change the zoom level using the mouse wheel.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-02-01 05:28:57 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'blur'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the `WebContents`  loses focus.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### Event: 'focus'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the `WebContents`  gains focus.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-02-03 00:32:53 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Note that on macOS, having focus means the `WebContents`  is the first responder
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								of window, so switching focus between windows would not trigger the `focus`  and
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`blur`  events of `WebContents` , as the first responder of each window is not
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								changed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The `focus`  and `blur`  events of `WebContents`  should only be used to detect
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								focus change between different `WebContents`  and `BrowserView`  in the same
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								window.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-26 09:54:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-open-url'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-10 11:25:50 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2023-01-26 09:54:26 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string - URL of the link that was clicked or selected.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a link is clicked in DevTools or 'Open in new tab' is selected for a link in its context menu.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-02-29 09:50:27 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-search-query'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `query`  string - text to query for.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when 'Search' is selected for text in its context menu.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-opened'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when DevTools is opened.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-closed'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when DevTools is closed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-focused'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when DevTools is focused / opened.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'certificate-error'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `error`  string - The error code.
							 
						 
					
						
							
								
									
										
										
										
											2016-09-28 20:00:01 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `certificate`  [Certificate ](structures/certificate.md )
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isTrusted`  boolean - Indicates whether the certificate can be considered trusted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `isMainFrame`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when failed to verify the `certificate`  for `url` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The usage is the same with [the `certificate-error`  event of
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`app` ](app.md#event -certificate-error).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'select-client-certificate'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `url`  URL
							 
						 
					
						
							
								
									
										
										
										
											2016-10-12 16:12:02 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `certificateList`  [Certificate[]](structures/certificate.md)
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function
							 
						 
					
						
							
								
									
										
										
										
											2017-11-28 18:15:15 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `certificate`  [Certificate ](structures/certificate.md ) - Must be a certificate from the given list.
							 
						 
					
						
							
								
									
										
										
										
											2015-11-18 11:35:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a client certificate is requested.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The usage is the same with [the `select-client-certificate`  event of
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`app` ](app.md#event -select-client-certificate).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'login'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-28 21:14:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2019-11-11 09:47:01 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `authenticationResponseDetails`  Object
							 
						 
					
						
							
								
									
										
										
										
											2015-10-28 21:14:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `url`  URL
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `authInfo`  Object
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isProxy`  boolean
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `scheme`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `host`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-10-28 21:14:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `port`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `realm`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-10-28 21:14:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `username`  string (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `password`  string (optional)
							 
						 
					
						
							
								
									
										
										
										
											2015-10-28 21:14:00 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when `webContents`  wants to do basic auth.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The usage is the same with [the `login` event of `app` ](app.md#event-login ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'found-in-page'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `result`  Object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `requestId`  Integer
							 
						 
					
						
							
								
									
										
										
										
											2016-09-09 19:50:43 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `activeMatchOrdinal`  Integer - Position of the active match.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `matches`  Integer - Number of Matches.
							 
						 
					
						
							
								
									
										
										
										
											2019-08-05 10:45:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `selectionArea`  Rectangle - Coordinates of first match region.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `finalUpdate`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a result is available for
							 
						 
					
						
							
								
									
										
										
										
											2023-01-16 01:22:49 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[`webContents.findInPage` ](#contentsfindinpagetext-options ) request.
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'media-started-playing'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-22 17:16:31 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when media starts playing.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'media-paused'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-22 17:16:31 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when media is paused or done playing.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-06 17:00:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'audio-state-changed'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  Event\<\>
							 
						 
					
						
							
								
									
										
										
										
											2023-03-06 17:00:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `audible`  boolean - True if one or more frames or child `webContents`  are emitting audio.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when media becomes audible or inaudible.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-change-theme-color'
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-22 17:16:31 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-06 08:29:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `color`  (string | null) - Theme color is in format of '#rrggbb '. It is `null`  when no theme color is set.
							 
						 
					
						
							
								
									
										
										
										
											2019-05-06 08:29:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-04-22 22:53:26 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a page's theme color changes. This is usually due to encountering
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								a meta tag:
							 
						 
					
						
							
								
									
										
										
										
											2015-12-22 17:16:31 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```html
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< meta  name = 'theme-color'  content = ' #ff0000 ' > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'update-target-url'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-06-07 15:56:19 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
									
										
										
										
											2016-06-07 15:56:19 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when mouse moves over a link or the keyboard moves the focus to a link.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'cursor-changed'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-01-31 02:27:14 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `type`  string
							 
						 
					
						
							
								
									
										
										
										
											2017-11-28 18:15:15 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `image`  [NativeImage ](native-image.md ) (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `scale`  Float (optional) - scaling factor for the custom cursor.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `size`  [Size ](structures/size.md ) (optional) - the size of the `image` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `hotspot`  [Point ](structures/point.md ) (optional) - coordinates of the custom cursor's hotspot.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-31 17:00:14 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-15 10:27:09 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when the cursor's type changes. The `type`  parameter can be `pointer` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`crosshair` , `hand` , `text` , `wait` , `help` , `e-resize` , `n-resize` , `ne-resize` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`nw-resize` , `s-resize` , `se-resize` , `sw-resize` , `w-resize` , `ns-resize` , `ew-resize` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`nesw-resize` , `nwse-resize` , `col-resize` , `row-resize` , `m-panning` , `m-panning-vertical` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`m-panning-horizontal` , `e-panning` , `n-panning` , `ne-panning` , `nw-panning` , `s-panning` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`se-panning` , `sw-panning` , `w-panning` , `move` , `vertical-text` , `cell` , `context-menu` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`alias` , `progress` , `nodrop` , `copy` , `none` , `not-allowed` , `zoom-in` , `zoom-out` , `grab` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`grabbing` , `custom` , `null` , `drag-drop-none` , `drag-drop-move` , `drag-drop-copy` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`drag-drop-link` , `ns-no-resize` , `ew-no-resize` , `nesw-no-resize` , `nwse-no-resize` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or `default` .
							 
						 
					
						
							
								
									
										
										
										
											2016-01-31 17:00:14 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If the `type`  parameter is `custom` , the `image`  parameter will hold the custom
							 
						 
					
						
							
								
									
										
										
										
											2017-11-28 18:15:15 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								cursor image in a [`NativeImage` ](native-image.md ), and `scale` , `size`  and `hotspot`  will hold
							 
						 
					
						
							
								
									
										
										
										
											2016-08-01 02:14:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								additional information about the custom cursor.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-31 02:27:14 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'context-menu'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-05-03 08:48:16 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `params`  Object
							 
						 
					
						
							
								
									
										
										
										
											2017-11-28 18:15:15 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `x`  Integer - x coordinate.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `y`  Integer - y coordinate.
							 
						 
					
						
							
								
									
										
										
										
											2021-09-21 19:52:49 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain - Frame from which the context menu was invoked.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `linkURL`  string - URL of the link that encloses the node the context menu
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    was invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `linkText`  string - Text associated with the link. May be an empty
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    string if the contents of the link are an image.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `pageURL`  string - URL of the top level page that the context menu was
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `frameURL`  string - URL of the subframe that the context menu was invoked
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `srcURL`  string - Source URL for the element that the context menu
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    was invoked on. Elements with source URLs are images, audio and video.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `mediaType`  string - Type of the node the context menu was invoked on. Can
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    be `none` , `image` , `audio` , `video` , `canvas` , `file`  or `plugin` .
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `hasImageContents`  boolean - Whether the context menu was invoked on an image
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    which has non-empty contents.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `isEditable`  boolean - Whether the context is editable.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `selectionText`  string - Text of the selection that the context menu was
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `titleText`  string - Title text of the selection that the context menu was
							 
						 
					
						
							
								
									
										
										
										
											2020-12-15 21:32:11 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `altText`  string - Alt text of the selection that the context menu was
							 
						 
					
						
							
								
									
										
										
										
											2020-12-15 21:32:11 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `suggestedFilename`  string - Suggested filename to be used when saving file through 'Save
							 
						 
					
						
							
								
									
										
										
										
											2020-12-15 21:32:11 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    Link As' option of context menu.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `selectionRect`  [Rectangle ](structures/rectangle.md ) - Rect representing the coordinates in the document space of the selection.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `selectionStartOffset`  number - Start position of the selection text.
							 
						 
					
						
							
								
									
										
										
										
											2020-12-15 21:32:11 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `referrerPolicy`  [Referrer ](structures/referrer.md ) - The referrer policy of the frame on which the menu is invoked.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `misspelledWord`  string - The misspelled word under the cursor, if any.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `dictionarySuggestions`  string[] - An array of suggested words to show the
							 
						 
					
						
							
								
									
										
										
										
											2019-10-31 13:11:51 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    user to replace the `misspelledWord` .  Only available if there is a misspelled
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    word and spellchecker is enabled.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `frameCharset`  string - The character encoding of the frame on which the
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    menu was invoked.
							 
						 
					
						
							
								
									
										
										
										
											2023-11-01 10:02:12 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `formControlType`  string - The source that the context menu was invoked on.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    Possible values include `none` , `button-button` , `field-set` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `input-button` , `input-checkbox` , `input-color` , `input-date` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `input-datetime-local` , `input-email` , `input-file` , `input-hidden` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `input-image` , `input-month` , `input-number` , `input-password` , `input-radio` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `input-range` , `input-reset` , `input-search` , `input-submit` , `input-telephone` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `input-text` , `input-time` , `input-url` , `input-week` , `output` , `reset-button` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    `select-list` , `select-list` , `select-multiple` , `select-one` , `submit-button` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    and `text-area` ,
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `spellcheckEnabled`  boolean - If the context is editable, whether or not spellchecking is enabled.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `menuSourceType`  string - Input source that invoked the context menu.
							 
						 
					
						
							
								
									
										
										
										
											2020-12-15 21:32:11 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    Can be `none` , `mouse` , `keyboard` , `touch` , `touchMenu` , `longPress` , `longTap` , `touchHandle` , `stylus` , `adjustSelection` , or `adjustSelectionReset` .
							 
						 
					
						
							
								
									
										
										
										
											2016-05-14 08:35:38 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `mediaFlags`  Object - The flags for the media element the context menu was
							 
						 
					
						
							
								
									
										
										
										
											2016-10-26 15:40:45 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    invoked on.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `inError`  boolean - Whether the media element has crashed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `isPaused`  boolean - Whether the media element is paused.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `isMuted`  boolean - Whether the media element is muted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `hasAudio`  boolean - Whether the media element has audio.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `isLooping`  boolean - Whether the media element is looping.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `isControlsVisible`  boolean - Whether the media element's controls are
							 
						 
					
						
							
								
									
										
										
										
											2016-10-26 16:18:55 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      visible.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `canToggleControls`  boolean - Whether the media element's controls are
							 
						 
					
						
							
								
									
										
										
										
											2016-10-26 16:18:55 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      toggleable.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `canPrint`  boolean - Whether the media element can be printed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canSave`  boolean - Whether or not the media element can be downloaded.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canShowPictureInPicture`  boolean - Whether the media element can show picture-in-picture.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `isShowingPictureInPicture`  boolean - Whether the media element is currently showing picture-in-picture.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canRotate`  boolean - Whether the media element can be rotated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canLoop`  boolean - Whether the media element can be looped.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-26 15:40:45 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `editFlags`  Object - These flags indicate whether the renderer believes it
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    is able to perform the corresponding action.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `canUndo`  boolean - Whether the renderer believes it can undo.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canRedo`  boolean - Whether the renderer believes it can redo.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canCut`  boolean - Whether the renderer believes it can cut.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canCopy`  boolean - Whether the renderer believes it can copy.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canPaste`  boolean - Whether the renderer believes it can paste.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canDelete`  boolean - Whether the renderer believes it can delete.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canSelectAll`  boolean - Whether the renderer believes it can select all.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `canEditRichly`  boolean - Whether the renderer believes it can edit text richly.
							 
						 
					
						
							
								
									
										
										
										
											2016-05-03 08:48:16 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when there is a new context menu that needs to be handled.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'select-bluetooth-device'
 
							 
						 
					
						
							
								
									
										
										
										
											2016-05-31 13:37:45 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2016-10-13 14:38:06 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `devices`  [BluetoothDevice[]](structures/bluetooth-device.md)
							 
						 
					
						
							
								
									
										
										
										
											2016-05-31 13:37:45 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `deviceId`  string
							 
						 
					
						
							
								
									
										
										
										
											2016-05-31 13:37:45 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-27 09:31:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a bluetooth device needs to be selected when a call to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`navigator.bluetooth.requestDevice`  is made. `callback`  should be called with
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the `deviceId`  of the device to be selected.  Passing an empty string to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`callback`  will cancel the request.
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 11:39:14 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-27 09:31:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If an event listener is not added for this event, or if `event.preventDefault` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								is not called when handling this event, the first available device will be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								automatically selected.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Due to the nature of bluetooth, scanning for devices when
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`navigator.bluetooth.requestDevice`  is called may take time and will cause
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`select-bluetooth-device`  to fire multiple times until `callback`  is called
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								with either a device id or an empty string to cancel the request.
							 
						 
					
						
							
								
									
										
										
										
											2021-12-16 08:46:48 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js title='main.js'
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { app, BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2018-06-07 20:29:20 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								let win = null
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 11:39:14 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-02-03 16:43:22 -06:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								app.whenReady().then(() => {
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win = new BrowserWindow({ width: 800, height: 600 })
							 
						 
					
						
							
								
									
										
										
										
											2018-06-07 20:29:20 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win.webContents.on('select-bluetooth-device', (event, deviceList, callback) => {
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 11:39:14 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    event.preventDefault()
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    const result = deviceList.find((device) => {
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 11:39:14 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      return device.deviceName === 'test'
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    if (!result) {
							 
						 
					
						
							
								
									
										
										
										
											2023-03-27 09:31:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      // The device wasn't found so we need to either wait longer (eg until the
							 
						 
					
						
							
								
									
										
										
										
											2023-05-15 00:58:35 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      // device is turned on) or cancel the request by calling the callback
							 
						 
					
						
							
								
									
										
										
										
											2023-03-27 09:31:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      // with an empty string.
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 11:39:14 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      callback('')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    } else {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      callback(result.deviceId)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2016-05-31 13:37:45 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'paint'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2016-10-08 13:09:31 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `dirtyRect`  [Rectangle ](structures/rectangle.md )
							 
						 
					
						
							
								
									
										
										
										
											2016-08-05 18:08:36 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `image`  [NativeImage ](native-image.md ) - The image data of the whole frame.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a new frame is generated. Only the dirty area is passed in the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								buffer.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2016-08-04 13:58:50 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ webPreferences: { offscreen: true } })
							 
						 
					
						
							
								
									
										
										
										
											2016-08-04 13:47:52 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.on('paint', (event, dirty, image) => {
							 
						 
					
						
							
								
									
										
										
										
											2016-08-05 18:08:36 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  // updateBitmap(dirty, image.getBitmap())
							 
						 
					
						
							
								
									
										
										
										
											2016-08-03 10:15:38 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2023-08-10 11:55:52 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.loadURL('https://github.com')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-23 11:51:44 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'devtools-reload-page'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the devtools window instructs the webContents to reload
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 12:58:04 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'will-attach-webview'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2023-04-25 15:16:11 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `webPreferences`  [WebPreferences ](structures/web-preferences.md ) - The web preferences that will be used by the guest
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 12:58:04 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  page. This object can be modified to adjust the preferences for the guest
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  page.
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `params`  Record\<string, string\> - The other `<webview>`  parameters such as the `src`  URL.
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 13:58:07 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  This object can be modified to adjust the parameters of the guest page.
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 12:58:04 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 13:58:07 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when a `<webview>` 's web contents is being attached to this web
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								contents. Calling `event.preventDefault()`  will destroy the guest page.
							 
						 
					
						
							
								
									
										
										
										
											2017-02-03 12:58:04 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-02-10 10:33:33 +07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								This event can be used to configure `webPreferences`  for the `webContents` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								of a `<webview>`  before it's loaded, and provides the ability to set settings
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								that can't be set via `<webview>`  attributes.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-10-07 01:31:41 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'did-attach-webview'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `webContents`  WebContents - The guest web contents that is used by the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  `<webview>` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when a `<webview>`  has been attached to this web contents.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-08 09:37:56 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'console-message'
 
							 
						 
					
						
							
								
									
										
										
										
											2017-11-08 09:35:01 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-04-15 18:13:02 +03:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2020-05-22 00:39:51 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `level`  Integer - The log level, from 0 to 3. In order it matches `verbose` , `info` , `warning`  and `error` .
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `message`  string - The actual console message
							 
						 
					
						
							
								
									
										
										
										
											2020-05-22 00:39:51 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `line`  Integer - The line number of the source that triggered this console message
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `sourceId`  string
							 
						 
					
						
							
								
									
										
										
										
											2017-11-08 09:35:01 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-10-01 14:32:59 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Emitted when the associated window logs a console message.
							 
						 
					
						
							
								
									
										
										
										
											2017-11-08 09:35:01 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-18 12:03:43 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'preload-error'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `preloadPath`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-01-18 12:03:43 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `error`  Error
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the preload script `preloadPath`  throws an unhandled exception `error` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 17:47:58 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'ipc-message'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-02-13 13:39:18 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  [IpcMainEvent ](structures/ipc-main-event.md )
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `channel`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 17:47:58 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `...args`  any[]
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the renderer process sends an asynchronous message via `ipcRenderer.send()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-08-03 16:55:12 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								See also [`webContents.ipc` ](#contentsipc-readonly ), which provides an [`IpcMain` ](ipc-main.md )-like interface for responding to IPC messages specifically from this WebContents.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 17:47:58 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'ipc-message-sync'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-02-13 13:39:18 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `event`  [IpcMainEvent ](structures/ipc-main-event.md )
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `channel`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 17:47:58 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `...args`  any[]
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the renderer process sends a synchronous message via `ipcRenderer.sendSync()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-08-03 16:55:12 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								See also [`webContents.ipc` ](#contentsipc-readonly ), which provides an [`IpcMain` ](ipc-main.md )-like interface for responding to IPC messages specifically from this WebContents.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-21 18:44:19 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'preferred-size-changed'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `preferredSize`  [Size ](structures/size.md ) - The minimum size needed to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  contain the layout of the document—without requiring scrolling.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the `WebContents`  preferred size has changed.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This event will only be emitted when `enablePreferredSizeMode`  is set to `true` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								in `webPreferences` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-09-01 18:21:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### Event: 'frame-created'
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `event`  Event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `details`  Object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `frame`  WebFrameMain
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Emitted when the [mainFrame ](web-contents.md#contentsmainframe-readonly ), an `<iframe>` , or a nested `<iframe>`  is loaded within the page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### Instance Methods
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.loadURL(url[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
									
										
										
										
											2016-02-16 12:11:05 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `httpReferrer`  (string | [Referrer ](structures/referrer.md )) (optional) - An HTTP Referrer url.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `userAgent`  string (optional) - A user agent originating the request.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `extraHeaders`  string (optional) - Extra headers separated by "\n".
							 
						 
					
						
							
								
									
										
										
										
											2021-04-13 12:35:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `postData`  ([UploadRawData ](structures/upload-raw-data.md ) | [UploadFile ](structures/upload-file.md ))[] (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `baseURLForDataURL`  string (optional) - Base url (with trailing path separator) for files to be loaded by the data url. This is needed only if the specified `url`  is a data url and needs to load other files.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-12-06 12:16:19 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>`  - the promise will resolve when the page has finished loading
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								(see [`did-finish-load` ](web-contents.md#event-did-finish-load )), and rejects
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								if the page fails to load (see
							 
						 
					
						
							
								
									
										
										
										
											2019-05-01 17:04:22 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[`did-fail-load` ](web-contents.md#event-did-fail-load )). A noop rejection handler is already attached, which avoids unhandled rejection errors.
							 
						 
					
						
							
								
									
										
										
										
											2018-12-06 12:16:19 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-18 22:20:55 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Loads the `url`  in the window. The `url`  must contain the protocol prefix,
							 
						 
					
						
							
								
									
										
										
										
											2015-11-14 12:09:18 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								e.g. the `http://`  or `file://` . If the load should bypass http cache then
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								use the `pragma`  header to achieve it.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const options = { extraHeaders: 'pragma: no-cache\n' }
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.loadURL('https://github.com', options)
							 
						 
					
						
							
								
									
										
										
										
											2015-11-14 12:09:18 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-09-11 09:56:49 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.loadFile(filePath[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2018-01-04 11:38:56 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `filePath`  string
							 
						 
					
						
							
								
									
										
										
										
											2018-09-11 09:56:49 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `query`  Record\<string, string\> (optional) - Passed to `url.format()` .
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `search`  string (optional) - Passed to `url.format()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `hash`  string (optional) - Passed to `url.format()` .
							 
						 
					
						
							
								
									
										
										
										
											2018-01-04 11:38:56 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-12-06 12:16:19 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>`  - the promise will resolve when the page has finished loading
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								(see [`did-finish-load` ](web-contents.md#event-did-finish-load )), and rejects
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								if the page fails to load (see [`did-fail-load` ](web-contents.md#event-did-fail-load )).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-04 11:38:56 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Loads the given file in the window, `filePath`  should be a path to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								an HTML file relative to the root of your application.  For instance
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								an app structure like this:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-01-22 12:41:46 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```sh
							 
						 
					
						
							
								
									
										
										
										
											2018-01-04 11:38:56 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								| root
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								| - package.json
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								| - src
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								|   - main.js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								|   - index.html
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Would require code like this
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2018-01-04 11:38:56 +13:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.loadFile('src/index.html')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-08-17 14:17:55 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.downloadURL(url[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-02 13:49:42 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `url`  string
							 
						 
					
						
							
								
									
										
										
										
											2023-08-17 14:17:55 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `headers`  Record\<string, string\> (optional) - HTTP request headers.
							 
						 
					
						
							
								
									
										
										
										
											2015-12-02 13:49:42 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Initiates a download of the resource at `url`  without navigating. The
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`will-download`  event of `session`  will be triggered.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getURL()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - The URL of the current web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow({ width: 800, height: 600 })
							 
						 
					
						
							
								
									
										
										
										
											2023-08-10 11:55:52 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.loadURL('https://github.com').then(() => {
							 
						 
					
						
							
								
									
										
										
										
											2020-05-27 13:50:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  const currentURL = win.webContents.getURL()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  console.log(currentURL)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getTitle()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - The title of the current web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-03 14:54:36 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isDestroyed()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the web page is destroyed.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-03 14:54:36 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-09-16 16:22:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.close([opts])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `opts`  Object (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `waitForBeforeUnload`  boolean - if true, fire the `beforeunload`  event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    before closing the page. If the page prevents the unload, the WebContents
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    will not be closed. The [`will-prevent-unload` ](#event-will-prevent-unload )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    will be fired if the page requests prevention of unload.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Closes the page, as if the web content had called `window.close()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If the page is successfully closed (i.e. the unload is not prevented by the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								page, or `waitForBeforeUnload`  is false or unspecified), the WebContents will
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								be destroyed and no longer usable. The [`destroyed` ](#event-destroyed ) event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								will be emitted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-06-15 10:19:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.focus()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Focuses the web page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isFocused()`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-07-13 14:20:33 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the web page is focused.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-13 14:20:33 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isLoading()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether web page is still loading resources.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isLoadingMainFrame()`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-04-19 23:27:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the main frame (and not just iframes or frames within it) is
							 
						 
					
						
							
								
									
										
										
										
											2016-04-22 22:53:26 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								still loading.
							 
						 
					
						
							
								
									
										
										
										
											2016-04-19 23:27:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isWaitingForResponse()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the web page is waiting for a first-response from the main
							 
						 
					
						
							
								
									
										
										
										
											2015-08-24 15:41:02 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								resource of the page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.stop()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Stops any pending navigation.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.reload()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 19:03:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Reloads the current web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.reloadIgnoringCache()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Reloads current page and ignores cache.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.canGoBack()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the browser can go back to previous web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.canGoForward()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the browser can go forward to next web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.canGoToOffset(offset)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `offset`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the web page can go to `offset` .
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.clearHistory()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Clears the navigation history.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.goBack()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 19:03:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Makes the browser go back a web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.goForward()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 19:03:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Makes the browser go forward a web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.goToIndex(index)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `index`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 19:03:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Navigates browser to the specified absolute web page index.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.goToOffset(offset)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `offset`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Navigates to the specified offset from the "current entry".
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isCrashed()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the renderer process has crashed.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-10-02 14:50:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.forcefullyCrashRenderer()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Forcefully terminates the renderer process that is currently hosting this
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`webContents` . This will cause the `render-process-gone`  event to be emitted
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								with the `reason=killed || reason=crashed` . Please note that some webContents share renderer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								processes and therefore calling this method may also crash the host process
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								for other webContents as well.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Calling `reload()`  immediately after calling this
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								method will force the reload to occur in a new process. This should be used
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								when this process is unstable or unusable, for instance in order to recover
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								from the `unresponsive`  event.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.on('unresponsive', async () => {
							 
						 
					
						
							
								
									
										
										
										
											2020-10-02 14:50:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  const { response } = await dialog.showMessageBox({
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    message: 'App X has become unresponsive',
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    title: 'Do you want to try forcefully reloading the app?',
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    buttons: ['OK', 'Cancel'],
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    cancelId: 1
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  if (response === 0) {
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    win.webContents.forcefullyCrashRenderer()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    win.webContents.reload()
							 
						 
					
						
							
								
									
										
										
										
											2020-10-02 14:50:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setUserAgent(userAgent)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `userAgent`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Overrides the user agent for this web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getUserAgent()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - The user agent for this web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-17 14:34:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.insertCSS(css[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `css`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-07-17 14:34:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2023-10-13 03:00:44 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `cssOrigin`  string (optional) - Can be 'user' or 'author'. Sets the [cascade origin ](https://www.w3.org/TR/css3-cascade/#cascade-origin ) of the inserted stylesheet. Default is 'author'.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<string>`  - A promise that resolves with a key for the inserted CSS that can later be used to remove the CSS via `contents.removeInsertedCSS(key)` .
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 11:10:02 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 17:39:36 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Injects CSS into the current web page and returns a unique key for the inserted
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								stylesheet.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-26 10:10:56 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.on('did-finish-load', () => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.insertCSS('html, body { background-color: #f00 ; }')
							 
						 
					
						
							
								
									
										
										
										
											2019-02-26 10:10:56 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 17:39:36 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.removeInsertedCSS(key)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `key`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 17:39:36 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Promise<void>`  - Resolves if the removal was successful.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Removes the inserted CSS from the current web page. The stylesheet is identified
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								by its key, which is returned from `contents.insertCSS(css)` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.on('did-finish-load', async () => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const key = await win.webContents.insertCSS('html, body { background-color: #f00 ; }')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.removeInsertedCSS(key)
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 17:39:36 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-03-14 20:08:54 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.executeJavaScript(code[, userGesture])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `code`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `userGesture`  boolean (optional) - Default is `false` .
							 
						 
					
						
							
								
									
										
										
										
											2019-03-14 20:08:54 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Promise<any>`  - A promise that resolves with the result of the executed code
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or is rejected if the result of the code is a rejected promise.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Evaluates `code`  in page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								In the browser window some HTML APIs like `requestFullScreen`  can only be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								invoked by a gesture from the user. Setting `userGesture`  to `true`  will remove
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								this limitation.
							 
						 
					
						
							
								
									
										
										
										
											2016-10-11 16:47:09 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-11 23:55:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Code execution will be suspended until web page stop loading.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-11 16:47:09 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.executeJavaScript('fetch("https://jsonplaceholder.typicode.com/users/1").then(resp => resp.json())', true)
							 
						 
					
						
							
								
									
										
										
										
											2016-10-11 16:47:09 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  .then((result) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    console.log(result) // Will be the JSON object from the fetch call
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-11-22 15:33:55 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.executeJavaScriptInIsolatedWorld(worldId, scripts[, userGesture])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `worldId`  Integer - The ID of the world to run the javascript in, `0`  is the default world, `999`  is the world used by Electron's `contextIsolation`  feature.  You can provide any integer here.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `scripts`  [WebSource[]](structures/web-source.md)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `userGesture`  boolean (optional) - Default is `false` .
							 
						 
					
						
							
								
									
										
										
										
											2019-11-22 15:33:55 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Promise<any>`  - A promise that resolves with the result of the executed code
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								or is rejected if the result of the code is a rejected promise.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Works like `executeJavaScript`  but evaluates `scripts`  in an isolated context.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-04-02 09:32:18 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setIgnoreMenuShortcuts(ignore)`
 
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `ignore`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2017-06-25 12:01:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Ignore application menu shortcuts while this web contents is focused.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setWindowOpenHandler(handler)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `handler`  Function\<{action: 'deny'} | {action: 'allow', outlivesOpener?: boolean, overrideBrowserWindowOptions?: BrowserWindowConstructorOptions}\>
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `details`  Object
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `url`  string - The _resolved_  version of the URL passed to `window.open()` . e.g. opening a window with `window.open('foo')`  will yield something like `https://the-origin/the/current/path/foo` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `frameName`  string - Name of the window provided in `window.open()` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `features`  string - Comma separated list of window features provided to `window.open()` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `disposition`  string - Can be `default` , `foreground-tab` , `background-tab` ,
							 
						 
					
						
							
								
									
										
										
										
											2023-03-30 10:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      `new-window`  or `other` .
							 
						 
					
						
							
								
									
										
										
										
											2021-04-13 12:35:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `referrer`  [Referrer ](structures/referrer.md ) - The referrer that will be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      passed to the new window. May or may not result in the `Referer`  header being
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      sent, depending on the referrer policy.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `postBody`  [PostBody ](structures/post-body.md ) (optional) - The post data that
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      will be sent to the new window, along with the appropriate headers that will
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      be set. If no post data is to be sent, the value will be `null` . Only defined
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      when the window is being created by a form that set `target=_blank` .
							 
						 
					
						
							
								
									
										
										
										
											2021-03-26 01:46:59 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-11-30 15:20:19 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  Returns `{action: 'deny'} | {action: 'allow', outlivesOpener?: boolean, overrideBrowserWindowOptions?: BrowserWindowConstructorOptions}`  - `deny`  cancels the creation of the new
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  window. `allow`  will allow the new window to be created. Specifying `overrideBrowserWindowOptions`  allows customization of the created window.
							 
						 
					
						
							
								
									
										
										
										
											2022-11-30 15:20:19 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  By default, child windows are closed when their opener is closed. This can be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  changed by specifying `outlivesOpener: true` , in which case the opened window
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  will not be closed when its opener is closed.
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  Returning an unrecognized value such as a null, undefined, or an object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  without a recognized 'action' value will result in a console error and have
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  the same effect as returning `{action: 'deny'}` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-04-21 10:55:17 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Called before creating a window a new window is requested by the renderer, e.g.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								by `window.open()` , a link with `target="_blank"` , shift+clicking on a link, or
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								submitting a form with `<form target="_blank">` . See
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[`window.open()` ](window-open.md ) for more details and how to use this in
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								conjunction with `did-create-window` .
							 
						 
					
						
							
								
									
										
										
										
											2020-11-10 09:06:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setAudioMuted(muted)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `muted`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 19:03:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Mute the audio on the current web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isAudioMuted()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether this page has been muted.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-07-12 12:35:11 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isCurrentlyAudible()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether audio is currently playing.
							 
						 
					
						
							
								
									
										
										
										
											2018-07-12 12:35:11 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 12:26:49 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setZoomFactor(factor)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-13 23:13:05 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `factor`  Double - Zoom factor; default is 1.0.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 12:26:49 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Changes the zoom factor to the specified factor. Zoom factor is
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								zoom percent divided by 100, so 300% = 3.0.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-13 23:13:05 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The factor must be greater than 0.0.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-20 23:40:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getZoomFactor()`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 13:04:21 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `number`  - the current zoom factor.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 13:04:21 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 12:26:49 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setZoomLevel(level)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `level`  number - Zoom level.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 12:26:49 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Changes the zoom level to the specified level. The original size is 0 and each
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								increment above or below represents zooming 20% larger or smaller to default
							 
						 
					
						
							
								
									
										
										
										
											2018-02-09 23:20:45 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								limits of 300% and 50% of original size, respectively. The formula for this is
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`scale := 1.2 ^ level` .
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 12:26:49 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-09-02 02:06:58 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  **NOTE**: The zoom policy at the Chromium level is same-origin, meaning that the
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>  zoom level for a specific domain propagates across all instances of windows with
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>  the same domain. Differentiating the window URLs will make zoom work per-window.
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-01-20 23:40:27 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getZoomLevel()`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 14:44:06 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `number`  - the current zoom level.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-02 13:04:21 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-22 08:07:55 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setVisualZoomLevelLimits(minimumLevel, maximumLevel)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `minimumLevel`  number
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `maximumLevel`  number
							 
						 
					
						
							
								
									
										
										
										
											2016-11-22 08:07:55 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 11:10:02 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-22 08:07:55 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Sets the maximum and minimum pinch-to-zoom level.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-12-18 19:40:42 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  **NOTE**: Visual zoom is disabled by default in Electron. To re-enable it, call:
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>  ```js
 
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  const win = new BrowserWindow()
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>  win.webContents.setVisualZoomLevelLimits(1, 3)
 
							 
						 
					
						
							
								
									
										
										
										
											2018-12-18 19:40:42 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  ```
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.undo()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `undo`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.redo()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `redo`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.cut()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `cut`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.copy()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `copy`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-03 03:14:29 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.centerSelection()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Centers the current text selection in web page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-25 14:42:53 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.copyImageAt(x, y)`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-07-26 12:08:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `x`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `y`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Copy the image at the given position to the clipboard.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.paste()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `paste`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.pasteAndMatchStyle()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `pasteAndMatchStyle`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.delete()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `delete`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.selectAll()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `selectAll`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.unselect()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `unselect`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-05-03 03:14:29 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.scrollToTop()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Scrolls to the top of the current `webContents` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.scrollToBottom()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Scrolls to the bottom of the current `webContents` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.adjustSelection(options)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `start`  Number (optional) - Amount to shift the start index of the current selection.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `end`  Number (optional) - Amount to shift the end index of the current selection.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Adjusts the current text selection starting and ending points in the focused frame by the given amounts. A negative amount moves the selection towards the beginning of the document, and a positive amount moves the selection towards the end of the document.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Example:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// Adjusts the beginning of the selection 1 letter forward,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// and the end of the selection 5 letters forward.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.adjustSelection({ start: 1, end: 5 })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// Adjusts the beginning of the selection 2 letters forward,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// and the end of the selection 3 letters backward.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.adjustSelection({ start: 2, end: -3 })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								For a call of `win.webContents.adjustSelection({ start: 1, end: 5 })` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Before:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-07 23:49:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								< img  width = "487"  alt = "Image Before Text Selection Adjustment"  src = "../images/web-contents-text-selection-before.png" / > 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-03 03:14:29 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								After:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-07 23:49:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								< img  width = "487"  alt = "Image After Text Selection Adjustment"  src = "../images/web-contents-text-selection-after.png" / > 
							 
						 
					
						
							
								
									
										
										
										
											2023-05-03 03:14:29 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.replace(text)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `text`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `replace`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.replaceMisspelling(text)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `text`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-08-26 13:57:42 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Executes the editing command `replaceMisspelling`  in web page.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.insertText(text)`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-01-13 11:55:49 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `text`  string
							 
						 
					
						
							
								
									
										
										
										
											2016-01-13 11:55:49 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-17 11:10:02 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-13 11:55:49 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Inserts `text`  to the focused element.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.findInPage(text[, options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `text`  string - Content to be searched, must not be empty.
							 
						 
					
						
							
								
									
										
										
										
											2016-02-16 11:54:41 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `forward`  boolean (optional) - Whether to search forward or backward, defaults to `true` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `findNext`  boolean (optional) - Whether to begin a new text finding session with this request. Should be `true`  for initial requests, and `false`  for follow-up requests. Defaults to `false` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `matchCase`  boolean (optional) - Whether search should be case-sensitive,
							 
						 
					
						
							
								
									
										
										
										
											2015-12-18 04:40:42 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    defaults to `false` .
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-10-03 16:39:37 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Integer`  - The request id used for the request.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Starts a request to find all matches for the `text`  in the web page. The result of the request
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								can be obtained by subscribing to [`found-in-page` ](web-contents.md#event-found-in-page ) event.
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.stopFindInPage(action)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `action`  string - Specifies the action to take place when ending
							 
						 
					
						
							
								
									
										
										
										
											2023-01-16 01:22:49 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  [`webContents.findInPage` ](#contentsfindinpagetext-options ) request.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-06 18:58:50 +03:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `clearSelection`  - Clear the selection.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `keepSelection`  - Translate the selection into a normal selection.
							 
						 
					
						
							
								
									
										
										
										
											2015-12-18 04:40:42 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `activateSelection`  - Focus and click the selection node.
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-12-18 04:40:42 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Stops any `findInPage`  request for the `webContents`  with the provided `action` .
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.webContents.on('found-in-page', (event, result) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  if (result.finalUpdate) win.webContents.stopFindInPage('clearSelection')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const requestId = win.webContents.findInPage('api')
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								console.log(requestId)
							 
						 
					
						
							
								
									
										
										
										
											2015-12-18 04:40:42 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2015-12-17 22:57:56 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-10-05 10:51:33 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.capturePage([rect, opts])`
 
							 
						 
					
						
							
								
									
										
										
										
											2018-11-27 23:50:53 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `rect`  [Rectangle ](structures/rectangle.md ) (optional) - The area of the page to be captured.
							 
						 
					
						
							
								
									
										
										
										
											2022-10-05 10:51:33 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `opts`  Object (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `stayHidden`  boolean (optional) -  Keep the page hidden instead of visible. Default is `false` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `stayAwake`  boolean (optional) -  Keep the system awake instead of allowing it to sleep. Default is `false` .
							 
						 
					
						
							
								
									
										
										
										
											2018-11-27 23:50:53 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-04-16 19:03:17 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<NativeImage>`  - Resolves with a [NativeImage ](native-image.md )
							 
						 
					
						
							
								
									
										
										
										
											2018-11-27 23:50:53 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Captures a snapshot of the page within `rect` . Omitting `rect`  will capture the whole visible page.
							 
						 
					
						
							
								
									
										
										
										
											2022-10-05 10:51:33 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The page is considered visible when its browser window is hidden and the capturer count is non-zero.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If you would like the page to stay hidden, you should ensure that `stayHidden`  is set to true.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-05 17:26:05 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-01-25 08:43:42 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isBeingCaptured()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether this page is being captured. It returns true when the capturer count
							 
						 
					
						
							
								
									
										
										
										
											2020-01-25 08:43:42 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								is large then 0.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-10-25 23:46:58 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getPrintersAsync()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Get the system printer list.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Promise<PrinterInfo[]>`  - Resolves with a [`PrinterInfo[]` ](structures/printer-info.md)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-07-21 15:16:27 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.print([options], [callback])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-02-16 12:11:05 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `silent`  boolean (optional) - Don't ask user for print settings. Default is `false` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `printBackground`  boolean (optional) - Prints the background color and image of
							 
						 
					
						
							
								
									
										
										
										
											2016-02-16 12:11:05 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    the web page. Default is `false` .
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `deviceName`  string (optional) - Set the printer device name to use. Must be the system-defined name and not the 'friendly' name, e.g 'Brother_QL_820NWB' and not 'Brother QL-820NWB'.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `color`  boolean (optional) - Set whether the printed web page will be in color or grayscale. Default is `true` .
							 
						 
					
						
							
								
									
										
										
										
											2019-06-29 22:12:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `margins`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `marginType`  string (optional) - Can be `default` , `none` , `printableArea` , or `custom` . If `custom`  is chosen, you will also need to specify `top` , `bottom` , `left` , and `right` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `top`  number (optional) - The top margin of the printed web page, in pixels.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `bottom`  number (optional) - The bottom margin of the printed web page, in pixels.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `left`  number (optional) - The left margin of the printed web page, in pixels.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `right`  number (optional) - The right margin of the printed web page, in pixels.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `landscape`  boolean (optional) - Whether the web page should be printed in landscape mode. Default is `false` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `scaleFactor`  number (optional) - The scale factor of the web page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `pagesPerSheet`  number (optional) - The number of pages to print per page sheet.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `collate`  boolean (optional) - Whether the web page should be collated.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `copies`  number (optional) - The number of copies of the web page to print.
							 
						 
					
						
							
								
									
										
										
										
											2020-08-27 20:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `pageRanges`  Object[]  (optional) - The page range to print. On macOS, only one range is honored.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `from`  number - Index of the first page to print (0-based).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `to`  number - Index of the last page to print (inclusive) (0-based).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `duplexMode`  string (optional) - Set the duplex mode of the printed web page. Can be `simplex` , `shortEdge` , or `longEdge` .
							 
						 
					
						
							
								
									
										
										
										
											2024-03-26 04:28:47 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `dpi`  Record\<string, number\> (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    *  `horizontal`  number (optional) - The horizontal dpi.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `vertical`  number (optional) - The vertical dpi.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `header`  string (optional) - string to be printed as page header.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `footer`  string (optional) - string to be printed as page footer.
							 
						 
					
						
							
								
									
										
										
										
											2023-02-14 10:44:34 +00:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `pageSize`  string | Size (optional) - Specify page size of the printed document. Can be `A0` , `A1` , `A2` , `A3` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  `A4` , `A5` , `A6` , `Legal` , `Letter` , `Tabloid`  or an Object containing `height`  and `width` .
							 
						 
					
						
							
								
									
										
										
										
											2017-07-21 15:16:27 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `success`  boolean - Indicates success of the print call.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `failureReason`  string - Error description called back if the print fails.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-08-18 15:55:16 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								When a custom `pageSize`  is passed, Chromium attempts to validate platform specific minimum values for `width_microns`  and `height_microns` . Width and height must both be minimum 353 microns but may be higher on some operating systems.
							 
						 
					
						
							
								
									
										
										
										
											2020-07-10 09:42:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-09 20:31:02 +03:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Prints window's web page. When `silent`  is set to `true` , Electron will pick
							 
						 
					
						
							
								
									
										
										
										
											2019-08-12 23:44:14 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								the system's default printer if `deviceName`  is empty and the default settings for printing.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-29 22:12:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Use `page-break-before: always;`  CSS style to force to print to a new page.
							 
						 
					
						
							
								
									
										
										
										
											2016-08-30 08:45:39 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-01 14:03:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Example usage:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2020-07-23 14:03:52 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const options = {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  silent: true,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  deviceName: 'My-Printer',
							 
						 
					
						
							
								
									
										
										
										
											2020-08-27 20:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  pageRanges: [{
							 
						 
					
						
							
								
									
										
										
										
											2020-07-23 14:03:52 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    from: 0,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    to: 1
							 
						 
					
						
							
								
									
										
										
										
											2020-08-27 20:21:29 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  }]
							 
						 
					
						
							
								
									
										
										
										
											2020-07-23 14:03:52 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								}
							 
						 
					
						
							
								
									
										
										
										
											2019-07-01 14:03:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.print(options, (success, errorType) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  if (!success) console.log(errorType)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-11 20:20:04 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.printToPDF(options)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `options`  Object
							 
						 
					
						
							
								
									
										
										
										
											2022-05-31 08:21:25 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `landscape`  boolean (optional) - Paper orientation.`true`  for landscape, `false`  for portrait. Defaults to false.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `displayHeaderFooter`  boolean (optional) - Whether to display header and footer. Defaults to false.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `printBackground`  boolean (optional) - Whether to print background graphics. Defaults to false.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `scale`  number(optional)  - Scale of the webpage rendering. Defaults to 1.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `pageSize`  string | Size (optional) - Specify page size of the generated PDF. Can be `A0` , `A1` , `A2` , `A3` ,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  `A4` , `A5` , `A6` , `Legal` , `Letter` , `Tabloid` , `Ledger` , or an Object containing `height`  and `width`  in inches. Defaults to `Letter` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `margins`  Object (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `top`  number (optional) - Top margin in inches. Defaults to 1cm (~0.4 inches).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `bottom`  number (optional) - Bottom margin in inches. Defaults to 1cm (~0.4 inches).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `left`  number (optional) - Left margin in inches. Defaults to 1cm (~0.4 inches).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `right`  number (optional) - Right margin in inches. Defaults to 1cm (~0.4 inches).
							 
						 
					
						
							
								
									
										
										
										
											2023-08-07 00:56:36 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `pageRanges`  string (optional) - Page ranges to print, e.g., '1-5, 8, 11-13'. Defaults to the empty string, which means print all pages.
							 
						 
					
						
							
								
									
										
										
										
											2022-05-31 08:21:25 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `headerTemplate`  string (optional) - HTML template for the print header. Should be valid HTML markup with following classes used to inject printing values into them: `date`  (formatted print date), `title`  (document title), `url`  (document location), `pageNumber`  (current page number) and `totalPages`  (total pages in the document). For example, `<span class=title></span>`  would generate span containing the title.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `footerTemplate`  string (optional) - HTML template for the print footer. Should use the same format as the `headerTemplate` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `preferCSSPageSize`  boolean (optional) - Whether or not to prefer page size as defined by css. Defaults to false, in which case the content will be scaled to fit the paper size.
							 
						 
					
						
							
								
									
										
										
										
											2023-08-24 17:01:59 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `generateTaggedPDF`  boolean (optional) _Experimental_  - Whether or not to generate a tagged (accessible) PDF. Defaults to false. As this property is experimental, the generated PDF may not adhere fully to PDF/UA and WCAG standards.
							 
						 
					
						
							
								
									
										
										
										
											2024-01-30 16:55:03 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `generateDocumentOutline`  boolean (optional) _Experimental_  - Whether or not to generate a PDF document outline from content headers. Defaults to false.
							 
						 
					
						
							
								
									
										
										
										
											2019-02-11 20:20:04 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-04-16 19:03:17 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<Buffer>`  - Resolves with the generated PDF data.
							 
						 
					
						
							
								
									
										
										
										
											2019-02-11 20:20:04 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-05-31 08:21:25 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Prints the window's web page as PDF.
							 
						 
					
						
							
								
									
										
										
										
											2019-02-11 20:20:04 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-01-09 02:31:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The `landscape`  will be ignored if `@page`  CSS at-rule is used in the web page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-01 15:27:17 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								An example of `webContents.printToPDF` :
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2024-01-30 16:55:03 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { app, BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2023-08-30 08:55:23 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const fs = require('node:fs')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const path = require('node:path')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const os = require('node:os')
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2024-01-30 16:55:03 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								app.whenReady().then(() => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const win = new BrowserWindow()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.loadURL('https://github.com')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.on('did-finish-load', () => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    // Use default printing options
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    const pdfPath = path.join(os.homedir(), 'Desktop', 'temp.pdf')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    win.webContents.printToPDF({}).then(data => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      fs.writeFile(pdfPath, data, (error) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								        if (error) throw error
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								        console.log(`Wrote PDF successfully to ${pdfPath}` )
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    }).catch(error => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      console.log(`Failed to write PDF to ${pdfPath}: ` , error)
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-05-31 08:21:25 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								See [Page.printToPdf ](https://chromedevtools.github.io/devtools-protocol/tot/Page/#method-printToPDF ) for more information.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.addWorkSpace(path)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `path`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-11-26 23:16:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Adds the specified path to DevTools workspace. Must be used after DevTools
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								creation:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2016-05-11 02:38:42 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.on('devtools-opened', () => {
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win.webContents.addWorkSpace(__dirname)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2015-11-26 23:16:00 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.removeWorkSpace(path)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `path`  string
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2015-09-09 14:11:06 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Removes the specified path from DevTools workspace.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setDevToolsWebContents(devToolsWebContents)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `devToolsWebContents`  WebContents
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Uses the `devToolsWebContents`  as the target `WebContents`  to show devtools.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The `devToolsWebContents`  must not have done any navigation, and it should not
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								be used for other purposes after the call.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								By default Electron manages the devtools by creating an internal `WebContents` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								with native view, which developers have very limited control of. With the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`setDevToolsWebContents`  method, developers can use any `WebContents`  to show
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the devtools in it, including `BrowserWindow` , `BrowserView`  and `<webview>` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								tag.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-02-13 00:18:27 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Note that closing the devtools does not destroy the `devToolsWebContents` , it
							 
						 
					
						
							
								
									
										
										
										
											2017-12-01 19:30:23 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								is caller's responsibility to destroy `devToolsWebContents` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								An example of showing devtools in a `<webview>`  tag:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```html
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< html > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< head > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  < style  type = "text/css" > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  { margin: 0; }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    #browser  { height: 70%; }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    #devtools  { height: 30%; }
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  < / style > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< / head > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< body > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  < webview  id = "browser"  src = "https://github.com" > < / webview > 
							 
						 
					
						
							
								
									
										
										
										
											2019-11-08 21:46:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  < webview  id = "devtools"  src = "about:blank" > < / webview > 
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  < script > 
							 
						 
					
						
							
								
									
										
										
										
											2020-09-14 10:36:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    const { ipcRenderer } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2019-11-08 21:46:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    const emittedOnce = (element, eventName) => new Promise(resolve => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      element.addEventListener(eventName, event => resolve(event), { once: true })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    })
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    const browserView = document.getElementById('browser')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    const devtoolsView = document.getElementById('devtools')
							 
						 
					
						
							
								
									
										
										
										
											2019-11-08 21:46:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    const browserReady = emittedOnce(browserView, 'dom-ready')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    const devtoolsReady = emittedOnce(devtoolsView, 'dom-ready')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    Promise.all([browserReady, devtoolsReady]).then(() => {
							 
						 
					
						
							
								
									
										
										
										
											2020-09-14 10:36:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      const targetId = browserView.getWebContentsId()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      const devtoolsId = devtoolsView.getWebContentsId()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								      ipcRenderer.send('open-devtools', targetId, devtoolsId)
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  < / script > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< / body > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								< / html > 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-09-14 10:36:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// Main process
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								const { ipcMain, webContents } = require('electron')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								ipcMain.on('open-devtools', (event, targetContentsId, devtoolsContentsId) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const target = webContents.fromId(targetContentsId)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const devtools = webContents.fromId(devtoolsContentsId)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  target.setDevToolsWebContents(devtools)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  target.openDevTools()
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								An example of showing devtools in a `BrowserWindow` :
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-08 18:41:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js title='main.js'
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { app, BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								let win = null
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								let devtools = null
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-02-03 16:43:22 -06:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								app.whenReady().then(() => {
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2017-12-01 12:04:50 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  devtools = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win.loadURL('https://github.com')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.setDevToolsWebContents(devtools.webContents)
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  win.webContents.openDevTools({ mode: 'detach' })
							 
						 
					
						
							
								
									
										
										
										
											2017-11-30 20:25:57 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.openDevTools([options])`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-02-16 12:11:05 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `options`  Object (optional)
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `mode`  string - Opens the devtools with specified dock state, can be
							 
						 
					
						
							
								
									
										
										
										
											2022-01-10 10:50:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    `left` , `right` , `bottom` , `undocked` , `detach` . Defaults to last used dock state.
							 
						 
					
						
							
								
									
										
										
										
											2018-11-27 10:34:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    In `undocked`  mode it's possible to dock back. In `detach`  mode it's not.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `activate`  boolean (optional) - Whether to bring the opened devtools window
							 
						 
					
						
							
								
									
										
										
										
											2018-11-27 10:34:44 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    to the foreground. The default is `true` .
							 
						 
					
						
							
								
									
										
										
										
											2023-08-15 13:32:53 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `title`  string (optional) - A title for the DevTools window (only in `undocked`  or `detach`  mode).
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 10:46:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Opens the devtools.
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-12-01 11:11:37 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								When `contents`  is a `<webview>`  tag, the `mode`  would be `detach`  by default,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								explicitly passing an empty `mode`  can force using last used dock state.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-08-11 15:16:12 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								On Windows, if Windows Control Overlay is enabled, Devtools will be opened with `mode: 'detach'` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.closeDevTools()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 10:46:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Closes the devtools.
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isDevToolsOpened()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the devtools is opened.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 10:46:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isDevToolsFocused()`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-01-04 10:46:30 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Whether the devtools view is focused .
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-08-15 13:32:53 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getDevToolsTitle()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `string`  - the current title of the DevTools window. This will only be visible
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								if DevTools is opened in `undocked`  or `detach`  mode.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.setDevToolsTitle(title)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `title`  string
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Changes the title of the DevTools window to `title` . This will only be visible if DevTools is
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								opened in `undocked`  or `detach`  mode.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.toggleDevTools()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Toggles the developer tools.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.inspectElement(x, y)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `x`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `y`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Starts inspecting element at position (`x` , `y` ).
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-01 10:44:24 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.inspectSharedWorker()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Opens the developer tools for the shared worker context.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-10-02 14:38:27 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.inspectSharedWorkerById(workerId)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `workerId`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-10-02 14:38:27 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Inspects the shared worker based on its ID.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.getAllSharedWorkers()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns [`SharedWorkerInfo[]` ](structures/shared-worker-info.md) - Information about all Shared Workers.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.inspectServiceWorker()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Opens the developer tools for the service worker context.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-04 14:03:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.send(channel, ...args)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `channel`  string
							 
						 
					
						
							
								
									
										
										
										
											2016-11-05 19:42:45 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `...args`  any[]
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-10-09 10:59:08 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Send an asynchronous message to the renderer process via `channel` , along with
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								arguments. Arguments will be serialized with the [Structured Clone
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Algorithm][SCA], just like [`postMessage` ][], so prototype chains will not be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								included. Sending Functions, Promises, Symbols, WeakMaps, or WeakSets will
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								throw an exception.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-08 18:41:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								:::warning
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-08 18:41:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Sending non-standard JavaScript types such as DOM objects or
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								special Electron objects will throw an exception.
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-08 18:41:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								:::
							 
						 
					
						
							
								
									
										
										
										
											2016-05-04 11:59:02 -06:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-03-08 18:41:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								For additional reading, refer to [Electron's IPC guide ](../tutorial/ipc.md ).
							 
						 
					
						
							
								
									
										
										
										
											2015-08-20 15:17:53 +02:00 
										
									 
								 
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-06-04 14:03:24 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.sendToFrame(frameId, channel, ...args)`
 
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 11:24:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-01-16 01:22:49 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `frameId`  Integer | \[number, number] - the ID of the frame to send to, or a
							 
						 
					
						
							
								
									
										
										
										
											2021-01-04 18:12:38 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  pair of `[processId, frameId]`  if the frame is in a different process to the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  main frame.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `channel`  string
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 11:24:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `...args`  any[]
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Send an asynchronous message to a specific frame in a renderer process via
							 
						 
					
						
							
								
									
										
										
										
											2019-10-09 10:59:08 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`channel` , along with arguments. Arguments will be serialized with the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[Structured Clone Algorithm][SCA], just like [`postMessage` ][], so prototype
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								chains will not be included. Sending Functions, Promises, Symbols, WeakMaps, or
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								WeakSets will throw an exception.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-01-26 14:14:44 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								>  **NOTE:** Sending non-standard JavaScript types such as DOM objects or
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								>  special Electron objects will throw an exception.
 
							 
						 
					
						
							
								
									
										
										
										
											2019-01-22 11:24:46 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The renderer process can handle the message by listening to `channel`  with the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[`ipcRenderer` ](ipc-renderer.md ) module.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								If you want to get the `frameId`  of a given renderer context you should use
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the `webFrame.routingId`  value.  E.g.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// In a renderer process
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								console.log('My frameId is:', require('electron').webFrame.routingId)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								You can also read `frameId`  from all incoming IPC messages in the main process.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// In the main process
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								ipcMain.on('ping', (event) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  console.info('Message came from frameId:', event.frameId)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-11 18:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.postMessage(channel, message, [transfer])`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `channel`  string
							 
						 
					
						
							
								
									
										
										
										
											2020-03-11 18:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `message`  any
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `transfer`  MessagePortMain[] (optional)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Send a message to the renderer process, optionally transferring ownership of
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								zero or more [`MessagePortMain` ][] objects.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The transferred `MessagePortMain`  objects will be available in the renderer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								process by accessing the `ports`  property of the emitted event. When they
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								arrive in the renderer, they will be native DOM `MessagePort`  objects.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								For example:
							 
						 
					
						
							
								
									
										
										
										
											2020-11-05 14:12:43 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-03-11 18:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// Main process
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2020-03-11 18:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { port1, port2 } = new MessageChannelMain()
							 
						 
					
						
							
								
									
										
										
										
											2023-06-05 15:26:26 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.postMessage('port', { message: 'hello' }, [port1])
							 
						 
					
						
							
								
									
										
										
										
											2020-03-11 18:07:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								// Renderer process
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								ipcRenderer.on('port', (e, msg) => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  const [port] = e.ports
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  // ...
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.enableDeviceEmulation(parameters)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 11:19:19 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-25 10:52:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `parameters`  Object
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `screenPosition`  string - Specify the screen type to emulate
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      (default: `desktop` ):
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `desktop`  - Desktop screen type.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    *  `mobile`  - Mobile screen type.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `screenSize`  [Size ](structures/size.md ) - Set the emulated screen size (screenPosition == mobile).
							 
						 
					
						
							
								
									
										
										
										
											2017-04-04 00:35:39 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `viewPosition`  [Point ](structures/point.md ) - Position the view on the screen
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      (screenPosition == mobile) (default: `{ x: 0, y: 0 }` ).
							 
						 
					
						
							
								
									
										
										
										
											2016-08-25 10:52:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `deviceScaleFactor`  Integer - Set the device scale factor (if zero defaults to
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      original device scale factor) (default: `0` ).
							 
						 
					
						
							
								
									
										
										
										
											2017-04-04 00:35:39 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `viewSize`  [Size ](structures/size.md ) - Set the emulated view size (empty means no override)
							 
						 
					
						
							
								
									
										
										
										
											2016-08-25 10:52:19 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `scale`  Float - Scale of emulated view inside available space (not in fit to
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								      view mode) (default: `1` ).
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 11:19:19 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Enable device emulation with the given parameters.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.disableDeviceEmulation()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-08-31 11:19:19 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Disable device emulation enabled by `webContents.enableDeviceEmulation` .
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:44:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:11:50 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.sendInputEvent(inputEvent)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:44:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:11:50 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `inputEvent`  [MouseInputEvent ](structures/mouse-input-event.md ) | [MouseWheelInputEvent ](structures/mouse-wheel-input-event.md ) | [KeyboardInputEvent ](structures/keyboard-input-event.md )
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:44:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Sends an input `event`  to the page.
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								**Note:** The [`BrowserWindow` ](browser-window.md ) containing the contents needs to be focused for
							 
						 
					
						
							
								
									
										
										
										
											2017-06-05 10:03:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`sendInputEvent()`  to work.
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:44:11 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.beginFrameSubscription([onlyDirty ,]callback)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `onlyDirty`  boolean (optional) - Defaults to `false` .
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `callback`  Function
							 
						 
					
						
							
								
									
										
										
										
											2018-05-14 19:09:05 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `image`  [NativeImage ](native-image.md )
							 
						 
					
						
							
								
									
										
										
										
											2016-10-13 17:30:57 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `dirtyRect`  [Rectangle ](structures/rectangle.md )
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Begin subscribing for presentation events and captured frames, the `callback` 
							 
						 
					
						
							
								
									
										
										
										
											2018-05-14 19:09:05 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								will be called with `callback(image, dirtyRect)`  when there is a presentation
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								event.
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-14 19:09:05 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The `image`  is an instance of [NativeImage ](native-image.md ) that stores the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								captured frame.
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-06-25 18:23:40 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								The `dirtyRect`  is an object with `x, y, width, height`  properties that
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								describes which part of the page was repainted. If `onlyDirty`  is set to
							 
						 
					
						
							
								
									
										
										
										
											2018-05-14 19:09:05 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								`true` , `image`  will only contain the repainted area. `onlyDirty`  defaults to
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`false` .
							 
						 
					
						
							
								
									
										
										
										
											2016-06-21 13:35:30 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.endFrameSubscription()`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-09-18 17:53:19 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								End subscribing for frame presentation events.
							 
						 
					
						
							
								
									
										
										
										
											2015-10-01 16:30:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.startDrag(item)`
 
							 
						 
					
						
							
								
									
										
										
										
											2016-07-03 15:10:59 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-10-13 14:38:06 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `item`  Object
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `file`  string - The path to the file being dragged.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `files`  string[] (optional) - The paths to the files being dragged. (`files`  will override `file`  field)
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `icon`  [NativeImage ](native-image.md ) | string - The image must be
							 
						 
					
						
							
								
									
										
										
										
											2019-08-29 17:45:41 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								    non-empty on macOS.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-03 15:10:59 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Sets the `item`  as dragging item for current drag-drop operation, `file`  is the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								absolute path of the file to be dragged, and `icon`  is the image showing under
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								the cursor when dragging.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-14 09:03:28 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.savePage(fullPath, saveType)`
 
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 12:41:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-02-07 09:51:59 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `fullPath`  string - The absolute file path.
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `saveType`  string - Specify the save type.
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 12:41:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `HTMLOnly`  - Save only the HTML of the page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `HTMLComplete`  - Save complete-html page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `MHTML`  - Save complete-html page as MHTML.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-14 09:03:28 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>`  - resolves if the page is saved.
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 12:41:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-11-20 23:50:08 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```js
							 
						 
					
						
							
								
									
										
										
										
											2018-09-14 02:10:51 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const { BrowserWindow } = require('electron')
							 
						 
					
						
							
								
									
										
										
										
											2020-07-09 10:18:49 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								const win = new BrowserWindow()
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								win.loadURL('https://github.com')
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 12:41:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-14 09:03:28 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								win.webContents.on('did-finish-load', async () => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  win.webContents.savePage('/tmp/test.html', 'HTMLComplete').then(() => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    console.log('Page was saved successfully.')
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  }).catch(err => {
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								    console.log(err)
							 
						 
					
						
							
								
									
										
										
										
											2016-07-25 18:39:25 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  })
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								})
							 
						 
					
						
							
								
									
										
										
										
											2015-10-14 12:41:31 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								```
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:10:50 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.showDefinitionForSelection()` _macOS_
 
							 
						 
					
						
							
								
									
										
										
										
											2016-06-07 13:09:54 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Shows pop-up dictionary that searches the selected word on the page.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 17:10:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.isOffscreen()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - Indicates whether _offscreen rendering_  is enabled.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 17:10:53 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.startPainting()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If _offscreen rendering_  is enabled and not painting, start painting.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.stopPainting()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If _offscreen rendering_  is enabled and painting, stop painting.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.isPainting()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - If _offscreen rendering_  is enabled returns whether it is currently painting.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.setFrameRate(fps)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-08-25 14:43:06 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `fps`  Integer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If _offscreen rendering_  is enabled sets the frame rate to the specified number.
							 
						 
					
						
							
								
									
										
										
										
											2020-12-07 20:41:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Only values between 1 and 240 are accepted.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.getFrameRate()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Integer`  - If _offscreen rendering_  is enabled returns the current frame rate.
							 
						 
					
						
							
								
									
										
										
										
											2016-07-31 00:22:34 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-09-02 00:18:16 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.invalidate()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-02-14 11:17:39 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Schedules a full repaint of the window this web contents is in.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								If _offscreen rendering_  is enabled invalidates the frame and generates a new
							 
						 
					
						
							
								
									
										
										
										
											2016-09-02 00:18:16 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								one through the `'paint'`  event.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-03-08 09:55:59 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getWebRTCIPHandlingPolicy()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - Returns the WebRTC IP Handling Policy.
							 
						 
					
						
							
								
									
										
										
										
											2017-03-08 09:55:59 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.setWebRTCIPHandlingPolicy(policy)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `policy`  string - Specify the WebRTC IP Handling Policy.
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `default`  - Exposes user's public and local IPs. This is the default
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  behavior. When this policy is used, WebRTC has the right to enumerate all
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 09:54:09 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  interfaces and bind them to discover public interfaces.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `default_public_interface_only`  - Exposes user's public IP, but does not
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  expose user's local IP. When this policy is used, WebRTC should only use the
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 09:54:09 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  default route used by http. This doesn't expose any local addresses.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `default_public_and_private_interfaces`  - Exposes user's public and local
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  IPs. When this policy is used, WebRTC should only use the default route used
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 09:54:09 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  by http. This also exposes the associated default private address. Default
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  route is the route chosen by the OS on a multi-homed endpoint.
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:58:24 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  *  `disable_non_proxied_udp`  - Does not expose public or local IPs. When this
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 09:54:09 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								  policy is used, WebRTC should only use TCP to contact peers or servers unless
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  the proxy server supports UDP.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Setting the WebRTC IP handling policy allows you to control which IPs are
							 
						 
					
						
							
								
									
										
										
										
											2017-11-29 11:38:35 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								exposed via WebRTC. See [BrowserLeaks ](https://browserleaks.com/webrtc ) for
							 
						 
					
						
							
								
									
										
										
										
											2017-03-09 09:54:09 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								more details.
							 
						 
					
						
							
								
									
										
										
										
											2023-08-25 05:21:22 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.getWebRTCUDPPortRange()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Returns `Object` :
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `min`  Integer - The minimum UDP port number that WebRTC should use.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `max`  Integer - The maximum UDP port number that WebRTC should use.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								By default this value is `{ min: 0, max: 0 }`  , which would apply no restriction on the udp port range.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.setWebRTCUDPPortRange(udpPortRange)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `udpPortRange`  Object
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `min`  Integer - The minimum UDP port number that WebRTC should use.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								  *  `max`  Integer - The maximum UDP port number that WebRTC should use.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Setting the WebRTC UDP Port Range allows you to restrict the udp port range used by WebRTC. By default the port range is unrestricted.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								**Note:** To reset to an unrestricted port range this value should be set to `{ min: 0, max: 0 }` .
							 
						 
					
						
							
								
									
										
										
										
											2017-03-08 09:55:59 -05:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-10-26 11:03:59 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getMediaSourceId(requestWebContents)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								*  `requestWebContents`  WebContents - Web contents that the id will be registered to.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - The identifier of a WebContents stream. This identifier can be used
							 
						 
					
						
							
								
									
										
										
										
											2021-10-26 11:03:59 +11:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								with `navigator.mediaDevices.getUserMedia`  using a `chromeMediaSource`  of `tab` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The identifier is restricted to the web contents that it is registered to and is only valid for 10 seconds.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-05-15 20:02:20 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getOSProcessId()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Integer`  - The operating system `pid`  of the associated renderer
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								process.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.getProcessId()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-07-20 14:58:19 -03:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Integer`  - The Chromium internal `pid`  of the associated renderer. Can
							 
						 
					
						
							
								
									
										
										
										
											2018-05-01 00:34:41 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								be compared to the `frameProcessId`  passed by frame specific navigation events
							 
						 
					
						
							
								
									
										
										
										
											2018-05-25 10:50:27 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								(e.g. `did-frame-navigate` )
							 
						 
					
						
							
								
									
										
										
										
											2017-05-15 20:02:20 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-09-18 20:00:31 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.takeHeapSnapshot(filePath)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `filePath`  string - Path to the output file.
							 
						 
					
						
							
								
									
										
										
										
											2018-09-18 20:00:31 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-09-20 22:37:56 +10:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `Promise<void>`  - Indicates whether the snapshot has been created successfully.
							 
						 
					
						
							
								
									
										
										
										
											2018-09-18 20:00:31 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Takes a V8 heap snapshot and saves it to `filePath` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-14 15:11:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getBackgroundThrottling()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `boolean`  - whether or not this WebContents will throttle animations and timers
							 
						 
					
						
							
								
									
										
										
										
											2020-05-14 15:11:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								when the page becomes backgrounded. This also affects the Page Visibility API.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2018-10-18 17:32:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setBackgroundThrottling(allowed)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `allowed`  boolean
							 
						 
					
						
							
								
									
										
										
										
											2018-10-18 17:32:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Controls whether or not this WebContents will throttle animations and timers
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								when the page becomes backgrounded. This also affects the Page Visibility API.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-02-07 02:42:34 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.getType()`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Returns `string`  - the type of the webContent. Can be `backgroundPage` , `window` , `browserView` , `remote` , `webview`  or `offscreen` .
							 
						 
					
						
							
								
									
										
										
										
											2019-02-07 02:42:34 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-06-07 19:00:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.setImageAnimationPolicy(policy)`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								*  `policy`  string - Can be `animate` , `animateOnce`  or `noAnimation` .
							 
						 
					
						
							
								
									
										
										
										
											2021-06-07 19:00:22 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Sets the image animation policy for this webContents.  The policy only affects
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								_new_ images, existing images that are currently being animated are unaffected.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This is a known limitation in Chromium, you can force image animation to be
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								recalculated with `img.src = img.src`  which will result in no network traffic
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								but will update the animation policy.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								This corresponds to the [animationPolicy][] accessibility feature in Chromium.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[animationPolicy]: https://developer.chrome.com/docs/extensions/reference/accessibilityFeatures/#property -animationPolicy
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								### Instance Properties
 
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:10:50 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-08-03 16:55:12 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.ipc` _Readonly_
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								An [`IpcMain` ](ipc-main.md ) scoped to just IPC messages sent from this
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								WebContents.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								IPC messages sent with `ipcRenderer.send` , `ipcRenderer.sendSync`  or
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								`ipcRenderer.postMessage`  will be delivered in the following order:
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								1.  `contents.on('ipc-message')` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								2.  `contents.mainFrame.on(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								3.  `contents.ipc.on(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								4.  `ipcMain.on(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								Handlers registered with `invoke`  will be checked in the following order. The
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								first one that is defined will be called, the rest will be ignored.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								1.  `contents.mainFrame.handle(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								2.  `contents.handle(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								3.  `ipcMain.handle(channel)` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								A handler or event listener registered on the WebContents will receive IPC
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								messages sent from any frame, including child frames. In most cases, only the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								main frame can send IPC messages. However, if the `nodeIntegrationInSubFrames` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								option is enabled, it is possible for child frames to send IPC messages also.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								In that case, handlers should check the `senderFrame`  property of the IPC event
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								to ensure that the message is coming from the expected frame. Alternatively,
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								register handlers on the appropriate frame directly using the
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[`WebFrameMain.ipc` ](web-frame-main.md#frameipc-readonly ) interface.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.audioMuted`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `boolean`  property that determines whether this page is muted.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.userAgent`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `string`  property that determines the user agent for this web page.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.zoomLevel`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `number`  property that determines the zoom level for this web contents.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The original size is 0 and each increment above or below represents zooming 20% larger or smaller to default limits of 300% and 50% of original size, respectively. The formula for this is `scale := 1.2 ^ level` .
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.zoomFactor`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `number`  property that determines the zoom factor for this web contents.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								The zoom factor is the zoom percent divided by 100, so 300% = 3.0.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.frameRate`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								An `Integer`  property that sets the frame rate of the web contents to the specified number.
							 
						 
					
						
							
								
									
										
										
										
											2020-12-07 20:41:09 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Only values between 1 and 240 are accepted.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2023-04-03 04:20:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								Only applicable if _offscreen rendering_  is enabled.
							 
						 
					
						
							
								
									
										
										
										
											2019-07-03 08:57:10 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:12:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.id` _Readonly_
 
							 
						 
					
						
							
								
									
										
										
										
											2016-05-17 21:56:47 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-11-22 03:11:44 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `Integer`  representing the unique ID of this WebContents. Each ID is unique among all `WebContents`  instances of the entire Electron application.
							 
						 
					
						
							
								
									
										
										
										
											2016-05-17 21:56:47 +09:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:12:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.session` _Readonly_
 
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:48:45 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2017-07-24 10:29:03 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A [`Session` ](session.md ) used by this webContents.
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:48:45 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:12:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.hostWebContents` _Readonly_
 
							 
						 
					
						
							
								
									
										
										
										
											2016-02-17 14:22:19 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2016-11-10 12:25:26 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A [`WebContents` ](web-contents.md ) instance that might own this `WebContents` .
							 
						 
					
						
							
								
									
										
										
										
											2016-02-17 14:22:19 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:12:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.devToolsWebContents` _Readonly_
 
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:10:50 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-04-20 08:08:51 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `WebContents | null`  property that represents the of DevTools `WebContents`  associated with a given `WebContents` .
							 
						 
					
						
							
								
									
										
										
										
											2015-11-19 21:10:50 +08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								**Note:** Users should never store this object because it may become `null` 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								when the DevTools has been closed.
							 
						 
					
						
							
								
									
										
										
										
											2016-01-21 23:52:23 +05:30 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-07-26 16:12:59 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.debugger` _Readonly_
 
							 
						 
					
						
							
								
									
										
										
										
											2016-07-14 17:46:58 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2019-05-06 08:29:01 -07:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A [`Debugger` ](debugger.md ) instance for this webContents.
							 
						 
					
						
							
								
									
										
										
										
											2016-12-13 15:58:03 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2020-05-14 15:11:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.backgroundThrottling`
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-11-16 05:13:18 +01:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								A `boolean`  property that determines whether or not this WebContents will throttle animations and timers
							 
						 
					
						
							
								
									
										
										
										
											2020-05-14 15:11:45 +02:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								when the page becomes backgrounded. This also affects the Page Visibility API.
							 
						 
					
						
							
								
									
										
										
										
											2020-10-09 12:50:46 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								#### `contents.mainFrame` _Readonly_
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								A [`WebFrameMain` ](web-frame-main.md ) property that represents the top frame of the page's frame hierarchy.
							 
						 
					
						
							
								
									
										
										
										
											2021-09-01 18:21:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2022-09-26 12:37:08 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								#### `contents.opener` _Readonly_
 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								A [`WebFrameMain` ](web-frame-main.md ) property that represents the frame that opened this WebContents, either
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								with open(), or by navigating a link with a target attribute.
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								
							 
						 
					
						
							
								
									
										
										
										
											2021-09-01 18:21:15 -04:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[keyboardevent]: https://developer.mozilla.org/en-US/docs/Web/API/KeyboardEvent
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[event-emitter]: https://nodejs.org/api/events.html#events_class_eventemitter 
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[SCA]: https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Structured_clone_algorithm
							 
						 
					
						
							
								
							 
							
								
							 
							
								 
							 
							
							
								[`postMessage` ]: https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage
							 
						 
					
						
							
								
									
										
										
										
											2022-12-05 10:18:57 -08:00 
										
									 
								 
							 
							
								
									
										 
									 
								
							 
							
								 
							 
							
							
								[`MessagePortMain` ]: message-port-main.md