An open API service indexing awesome lists of open source software.

https://github.com/asimen1/ext-messenger

📫 Extension message passing made easy
https://github.com/asimen1/ext-messenger

chrome-extension message-passing messages messenger

Last synced: 7 months ago
JSON representation

📫 Extension message passing made easy

Awesome Lists containing this project

README

          

## Browser Extension message passing made easy

[![Latest Stable Version](https://img.shields.io/npm/v/ext-messenger.svg)](https://www.npmjs.com/package/ext-messenger)
[![NPM Downloads](https://img.shields.io/npm/dt/ext-messenger.svg)](https://www.npmjs.com/package/ext-messenger)

### What?

Small library for messaging across any browser extension parts (background, content script, popup or devtool).

It has a simple API, promise based callback support and more.

Supports extensions for `Chrome` and any Chromium based browser extensions like `Edge`, `Arc`, ...

### Why?

Sending messages between extension parts can get complicated and usually requires some relaying mechanism in the background page. Adding callback functionality to these messages can make it even trickier.

Furthermore, the messaging API is not coherent or straight forward, sometimes requiring you to use `runtime.*` API and sometimes `tabs.*` API depending on which extension part you are currently in.

### How?

```shell
npm i ext-messenger
```

OR

```shell
yarn add ext-messenger
```

#### 1) In the background page: create a messenger instance and init the background hub

```javascript
const Messenger = require('ext-messenger');
let messenger = new Messenger(Messenger.EXT_PARTS.BACKGROUND);

messenger.initBackgroundHub();
```

> This step is **obligatory** and should be done as soon as possible in your background page.

\* You can also add the [library](https://github.com/asimen1/ext-messenger/tree/master/dist) via script tag and use `window['ext-messenger']`.

#### 2) Init connections (in any extension parts)

```javascript
const Messenger = require('ext-messenger');
let messenger = new Messenger(Messenger.EXT_PARTS.CONTENT_SCRIPT);

/*
* {string} name - Identifier name for this connection.
* {function} messageHandler - Handler for incoming messages.
*/
messenger.initConnection(name, messageHandler);
```

This returns a **connection** object.

#### 3) Start sending messages across connections (in any extension parts)

```javascript
/*
* {string} to - ':'.
* {*} message - The message to send (any JSON-ifiable object).
*/
connection.sendMessage(to, message);
```

* `` possible values: `background`, `content_script`, `popup`, `devtool`.
* Sending messages from background require an additional tab id argument `:`.

Returns a `Promise`:

* The promise will be resolved if the receiver invoked the `sendResponse` method argument (see example below).
* The promise will be rejected if the connection has been disconnected via the `disconnect()` API.

#### More

```javascript
// Init hub with handlers notifying someone connected/disconnected.
messenger.initBackgroundHub({
connectedHandler: function(extensionPart, connectionName, tabId) {},
disconnectedHandler: function(extensionPart, connectionName, tabId) {}
});

// Sending to multiple connections is supported via:
// 'extension part:name1,name2,...'.
c.sendMessage('content_script:main,main2', { text: 'HI!' });

// Sending to all connections is supported using wildcard value '*'.
c.sendMessage('devtool:*', { text: 'HI!' });

// Disconnect the connection to stop listening for messages.
c.disconnect();
```

> When sending a message to multiple extension names (e.g. "name1,name2" or "*"), the returned promise will be resolved by the first connection that sends a response.

### Example

```javascript
/* ---------------------------------------------- */
/* Init connections in desired extension part: */
/* BACKGROUND, CONTENT_SCRIPT, POPUP, DEVTOOL */
/* ---------------------------------------------- */
const Messenger = require('ext-messenger');
let messenger = new Messenger(Messenger.EXT_PARTS.BACKGROUND);

let messageHandler = function(msg, from, sender, sendResponse) {
if (msg.text === 'HI!') {
sendResponse('HOWDY!');
}
};

let c = messenger.initConnection('main', messageHandler);
let c2 = messenger.initConnection('main2', messageHandler);
...

let msg = { text: 'HI!' };

/* ------------------------------------------------------ */
/* Send message to content script */
/* ------------------------------------------------------ */
c.sendMessage('content_script:main', msg);

/* ------------------------------------------------------ */
/* Send message to popup (with response) */
/* ------------------------------------------------------ */
c.sendMessage('popup:main2', msg).then((response) => {
console.log(response);
});

/* ------------------------------------------------------ */
/* Send message to background (with response) */
/* ------------------------------------------------------ */
c.sendMessage('background:main', msg).then((response) => {
console.log(response);
});

/* ------------------------------------------------------ */
/* Send message from background to devtool. */
/* '50' is an example tab id of the devtool. */
/* ------------------------------------------------------ */
c.sendMessage('devtool:main:50', msg).then((response) => {
console.log(response);
});
```

### Notes

* Requires your extension to have ["tabs" permission](https://developer.chrome.com/extensions/declare_permissions).
* Uses only long lived port connections via `runtime.*` API.
* This library should satisfy all your message passing needs, however if you are still handling some port connections manually, using `runtime.onConnect` will also receive messenger ports connections. In order to identify connections originating from this library you can use the static method `Messenger.isMessengerPort(port)` which will return true/false.
* The Messenger `messageHandler` and `runtime.onMessage` similarities and differences:
* **Same** - `sender` object.
* **Same** - `sendResponse` - The argument should be any JSON-ifiable object.
* **Same** - `sendResponse` - With multiple message handler, the `sendResponse()` will work only for the first one to respond.
* **Different** - `from` object indicating the senders formatted identifier e.g. `devtool:connection name`.
* **Different** - Async `sendResponse` is supported directly (no need to return `true` value like with `runtime.onMessage`).
* This library should probably also work for `Firefox` extensions but have never been tested.
* This library is compatible with manifest V3 (if you are looking for a manifest V2 compatible version, you can use version [^3.0.2](https://www.npmjs.com/package/ext-messenger/v/3.0.2)).

### Extensions using messenger

* [Restyler](https://chrome.google.com/webstore/detail/restyler/ofkkcnbmhaodoaehikkibjanliaeffel)

* Working on one? let me know ext.messenger@gmail.com! [![](https://asimen1.github.io/ext-messenger/images/mailicon.png "email")](mailto:ext.messenger@gmail.com)

### Developing Locally

```shell
npm install
npm run dev
```

You can now use the built messenger from the `dist` folder in a local test extension (or use [npm link](https://docs.npmjs.com/cli/link)).

I have created one (for internal testing purposes) that you can use: [ext-messenger-test](https://github.com/asimen1/ext-messenger-test).

### License

MIT