electron-chrome-extensions
TypeScript icon, indicating that this package has built-in type declarations

3.10.1 • Public • Published

electron-chrome-extensions

Chrome extension API support for Electron.

Electron provides basic support for Chrome extensions out of the box. However, it only supports a subset of APIs with a focus on DevTools. Concepts like tabs, popups, and extension actions aren't known to Electron.

This library aims to bring extension support in Electron up to the level you'd come to expect from a browser like Google Chrome. API behavior is customizable so you can define how to handle things like tab or window creation specific to your application's needs.

Install

npm install electron-chrome-extensions

Screenshots

uBlock Origin Dark Reader

Usage

Basic

Simple browser using Electron's default session and one tab.

const { app, BrowserWindow } = require('electron')
const { ElectronChromeExtensions } = require('electron-chrome-extensions')

(async function main() {
  await app.whenReady()

  const extensions = new ElectronChromeExtensions()
  const browserWindow = new BrowserWindow()

  // Adds the active tab of the browser
  extensions.addTab(browserWindow.webContents, browserWindow)

  browserWindow.loadURL('https://samuelmaddock.com')
  browserWindow.show()
}())

Advanced

Multi-tab browser with full support for Chrome extension APIs.

For a complete example, see the electron-browser-shell project.

const { app, session, BrowserWindow } = require('electron')
const { ElectronChromeExtensions } = require('electron-chrome-extensions')

(async function main() {
  await app.whenReady()

  const browserSession = session.fromPartition('persist:custom')

  const extensions = new ElectronChromeExtensions({
    session: browserSession,
    createTab(details) {
      // Optionally implemented for chrome.tabs.create support
    },
    selectTab(tab, browserWindow) {
      // Optionally implemented for chrome.tabs.update support
    },
    removeTab(tab, browserWindow) {
      // Optionally implemented for chrome.tabs.remove support
    },
    createWindow(details) {
      // Optionally implemented for chrome.windows.create support
    }
  })

  const browserWindow = new BrowserWindow({
    webPreferences: {
      // Same session given to Extensions class
      session: browserSession,
      // Recommended options for loading remote content
      sandbox: true,
      contextIsolation: true
    }
  })

  // Adds the active tab of the browser
  extensions.addTab(browserWindow.webContents, browserWindow)

  browserWindow.loadURL('https://samuelmaddock.com')
  browserWindow.show()
}())

API

Class: ElectronChromeExtensions

Create main process handler for Chrome extension APIs.

new ElectronChromeExtensions([options])

  • options Object (optional)
    • modulePath String (optional) - Path to electron-chrome-extensions module files. Might be needed if JavaScript bundlers like Webpack are used in your build process.
    • session Electron.Session (optional) - Session which should support Chrome extension APIs. session.defaultSession is used by default.
    • createTab(details) => Promise<[Electron.WebContents, Electron.BrowserWindow]> (optional) - Called when chrome.tabs.create is invoked by an extension. Allows the application to handle how tabs are created.
    • selectTab(webContents, browserWindow) (optional) - Called when chrome.tabs.update is invoked by an extension with the option to set the active tab.
      • webContents Electron.WebContents - The tab to be activated.
      • browserWindow Electron.BrowserWindow - The window which owns the tab.
    • removeTab(webContents, browserWindow) (optional) - Called when chrome.tabs.remove is invoked by an extension.
      • webContents Electron.WebContents - The tab to be removed.
      • browserWindow Electron.BrowserWindow - The window which owns the tab.
    • createWindow(details) => Promise<Electron.BrowserWindow> (optional) - Called when chrome.windows.create is invoked by an extension.
    • removeWindow(browserWindow) => Promise<Electron.BrowserWindow> (optional) - Called when chrome.windows.remove is invoked by an extension.
      • browserWindow Electron.BrowserWindow
new ElectronChromeExtensions({
  createTab(details) {
    const tab = myTabApi.createTab()
    if (details.url) {
      tab.webContents.loadURL(details.url)
    }
    return [tab.webContents, tab.browserWindow]
  },
  createWindow(details) {
    const window = new BrowserWindow()
    return window
  }
})

For a complete usage example, see the browser implementation in the electron-browser-shell project.

Instance Methods

extensions.addTab(tab, window)
  • tab Electron.WebContents - A tab that the extension system should keep track of.
  • window Electron.BrowserWindow - The window which owns the tab.

Makes the tab accessible from the chrome.tabs API.

extensions.selectTab(tab)
  • tab Electron.WebContents

Notify the extension system that a tab has been selected as the active tab.

extensions.getContextMenuItems(tab, params)
  • tab Electron.WebContents - The tab from which the context-menu event originated.
  • params Electron.ContextMenuParams - Parameters from the context-menu event.

Returns Electron.MenuItem[] - An array of all extension context menu items given the context.

Instance Events

Event: 'browser-action-popup-created'

Returns:

  • popup PopupView - An instance of the popup.

Emitted when a popup is created by the chrome.browserAction API.

Element: <browser-action-list>

The <browser-action-list> element provides a row of browser actions which may be pressed to activate the chrome.browserAction.onClicked event or display the extension popup.

To enable the element on a webpage, you must define a preload script which injects the API on specific pages.

Attributes

  • partition string (optional) - The Electron.Session partition which extensions are loaded in. Defaults to the session in which <browser-action-list> lives.
  • tab string (optional) - The tab's Electron.WebContents ID to use for displaying the relevant browser action state. Defaults to the active tab of the current browser window.

Browser action example

Preload

Inject the browserAction API to make the <browser-action-list> element accessible in your application.

import { injectBrowserAction } from 'electron-chrome-extensions/dist/browser-action'

// Inject <browser-action-list> element into our page
if (location.href === 'webui://browser-chrome.html') {
  injectBrowserAction()
}

The use of import implies that your preload script must be compiled using a JavaScript bundler like Webpack.

Webpage

Add the <browser-action-list> element with attributes appropriate for your application.

<!-- Show actions for the same session and active tab of current window. -->
<browser-action-list></browser-action-list>

<!-- Show actions for custom session and active tab of current window. -->
<browser-action-list partition="persist:custom"></browser-action-list>

<!-- Show actions for custom session and a specific tab of current window. -->
<browser-action-list partition="persist:custom" tab="1"></browser-action-list>
Custom CSS

The <browser-action-list> element is a Web Component. Its styles are encapsulated within a Shadow DOM. However, it's still possible to customize its appearance using the CSS shadow parts selector ::part(name).

Accessible parts include action and badge.

/* Layout action buttons vertically. */
browser-action-list {
  flex-direction: column;
}

/* Modify size of action buttons. */
browser-action-list::part(action) {
  width: 16px;
  height: 16px;
}

/* Modify hover styles of action buttons. */
browser-action-list::part(action):hover {
  background-color: red;
  border-radius: 0;
}

Supported chrome.* APIs

The following APIs are supported, in addition to those already built-in to Electron.

Click to reveal supported APIs

chrome.browserAction

  • [x] chrome.browserAction.setTitle
  • [x] chrome.browserAction.getTitle
  • [x] chrome.browserAction.setIcon
  • [x] chrome.browserAction.setPopup
  • [x] chrome.browserAction.getPopup
  • [x] chrome.browserAction.setBadgeText
  • [x] chrome.browserAction.getBadgeText
  • [x] chrome.browserAction.setBadgeBackgroundColor
  • [x] chrome.browserAction.getBadgeBackgroundColor
  • [ ] chrome.browserAction.enable
  • [ ] chrome.browserAction.disable
  • [x] chrome.browserAction.onClicked

chrome.commands

  • [ ] chrome.commands.getAll
  • [ ] chrome.commands.onCommand

chrome.cookies

  • [x] chrome.cookies.get
  • [x] chrome.cookies.getAll
  • [x] chrome.cookies.set
  • [x] chrome.cookies.remove
  • [x] chrome.cookies.getAllCookieStores
  • [x] chrome.cookies.onChanged

chrome.contextMenus

  • [x] chrome.contextMenus.create
  • [ ] chrome.contextMenus.update
  • [x] chrome.contextMenus.remove
  • [x] chrome.contextMenus.removeAll
  • [x] chrome.contextMenus.onClicked

chrome.notifications

  • [x] chrome.notifications.clear
  • [x] chrome.notifications.create
  • [x] chrome.notifications.getAll
  • [x] chrome.notifications.getPermissionLevel
  • [x] chrome.notifications.update
  • [ ] chrome.notifications.onButtonClicked
  • [x] chrome.notifications.onClicked
  • [x] chrome.notifications.onClosed

See Electron's Notification tutorial for how to support them in your app.

chrome.runtime

  • [x] chrome.runtime.connect
  • [x] chrome.runtime.getBackgroundPage
  • [x] chrome.runtime.getManifest
  • [x] chrome.runtime.getURL
  • [x] chrome.runtime.id
  • [x] chrome.runtime.lastError
  • [x] chrome.runtime.onConnect
  • [x] chrome.runtime.onInstalled
  • [x] chrome.runtime.onMessage
  • [x] chrome.runtime.onStartup
  • [x] chrome.runtime.onSuspend
  • [x] chrome.runtime.onSuspendCanceled
  • [x] chrome.runtime.openOptionsPage
  • [x] chrome.runtime.sendMessage

chrome.storage

  • [x] chrome.storage.local
  • [x] chrome.storage.managed - fallback to local
  • [x] chrome.storage.sync - fallback to local

chrome.tabs

  • [x] chrome.tabs.get
  • [x] chrome.tabs.getCurrent
  • [x] chrome.tabs.connect
  • [x] chrome.tabs.sendMessage
  • [x] chrome.tabs.create
  • [ ] chrome.tabs.duplicate
  • [x] chrome.tabs.query
  • [ ] chrome.tabs.highlight
  • [x] chrome.tabs.update
  • [ ] chrome.tabs.move
  • [x] chrome.tabs.reload
  • [x] chrome.tabs.remove
  • [ ] chrome.tabs.detectLanguage
  • [ ] chrome.tabs.captureVisibleTab
  • [x] chrome.tabs.executeScript
  • [x] chrome.tabs.insertCSS
  • [x] chrome.tabs.setZoom
  • [x] chrome.tabs.getZoom
  • [x] chrome.tabs.setZoomSettings
  • [x] chrome.tabs.getZoomSettings
  • [ ] chrome.tabs.discard
  • [x] chrome.tabs.goForward
  • [x] chrome.tabs.goBack
  • [x] chrome.tabs.onCreated
  • [x] chrome.tabs.onUpdated
  • [ ] chrome.tabs.onMoved
  • [x] chrome.tabs.onActivated
  • [ ] chrome.tabs.onHighlighted
  • [ ] chrome.tabs.onDetached
  • [ ] chrome.tabs.onAttached
  • [x] chrome.tabs.onRemoved
  • [ ] chrome.tabs.onReplaced
  • [x] chrome.tabs.onZoomChange

chrome.webNavigation

  • [x] chrome.webNavigation.getFrame (Electron 12+)
  • [x] chrome.webNavigation.getAllFrames (Electron 12+)
  • [x] chrome.webNavigation.onBeforeNavigate
  • [x] chrome.webNavigation.onCommitted
  • [x] chrome.webNavigation.onDOMContentLoaded
  • [x] chrome.webNavigation.onCompleted
  • [ ] chrome.webNavigation.onErrorOccurred
  • [x] chrome.webNavigation.onCreateNavigationTarget
  • [ ] chrome.webNavigation.onReferenceFragmentUpdated
  • [ ] chrome.webNavigation.onTabReplaced
  • [x] chrome.webNavigation.onHistoryStateUpdated

chrome.windows

  • [x] chrome.windows.get
  • [x] chrome.windows.getCurrent
  • [x] chrome.windows.getLastFocused
  • [x] chrome.windows.getAll
  • [x] chrome.windows.create
  • [x] chrome.windows.update
  • [x] chrome.windows.remove
  • [x] chrome.windows.onCreated
  • [x] chrome.windows.onRemoved
  • [x] chrome.windows.onFocusChanged
  • [ ] chrome.windows.onBoundsChanged

Limitations

electron-chrome-extensions

  • The latest version of Electron is recommended. Minimum support requires Electron v9.
  • Chrome's Manifest V3 extensions are not yet supported.
  • All background scripts are persistent.

electron

  • Usage of Electron's webRequest API will prevent chrome.webRequest listeners from being called.
  • Chrome extensions are not supported in non-persistent/incognito sessions.
  • chrome.webNavigation.onDOMContentLoaded is only emitted for the top frame until support for iframes is added.

License

GPL-3

For proprietary use, please contact me or sponsor me on GitHub under the appropriate tier to acquire a proprietary-use license. These contributions help make development and maintenance of this project more sustainable and show appreciation for the work thus far.

Package Sidebar

Install

npm i electron-chrome-extensions

Weekly Downloads

412

Version

3.10.1

License

SEE LICENSE IN LICENSE.md

Unpacked Size

519 kB

Total Files

39

Last publish

Collaborators

  • samuelmaddock