@webext-pegasus/transport
Sending messages and events in web extensions has never been easier. Batteries included 🔋🔋🔋
Turns surface specific browser APIs into unified transport layer. So you can seamlessly communicate between all extension contexts (including injected script/window). Promotes code reusability by enabling reuse of the components that rely on messages/events between dfferent extension contexts.
No more chrome.runtime.sendMessage
or chrome.runtime.onConnect
or window.dispatchEvent
This library provides two communication patterns:
- One-on-one messaging with optional replies – via
definePegasusMessageBus
API. Resilient way of communication between any 2 contexts. Ex: DevTools panel and injected script within instected tab. - Event broadcasting – via
definePegasusEventBus
API. This allows you to inform other extension contexts about certains events. Ex: broadcast changes to all open tabs
Supports
- Runtime contexts: window (injected script), popup, devtools, content script, background, options, sidepanel (planned)
- Browsers: Chrome, Firefox, Safari, Opera, Edge + others supported by webextension-polyfill
Comparison to other libraries
| @webext-pegasus/transport | webext-bridge | @webext-core/messaging |
---|
Injected script (window) support | ✅ | ✅ | 🌦️ |
One-on-one messaging | ✅ | ✅ | ✅ |
Event Broadcasting | ✅ | ❌ | ❌ |
Context agnostic APIs | ✅ | ❌ | 🌦️ |
Type Safety | ✅ | 🌦️ | ✅ |
🚀 Quick Start
npm install -S @webext-pegasus/transport
Initialize Pegasus transport layer once for every runtime context you use in your extension.
import { initPegasusTransport } from '@webext-pegasus/transport/background';
initPegasusTransport();
As soon as Pegasus Transport was initialized - all other code that relies on transport layer may simply do the following:
import {definePegasusEventBus, definePegasusMessageBus} from '@webext-pegasus/transport';
interface ITestMessageBus {
stringLength(data: string): number;
}
const messageBus = definePegasusMessageBus<ITestEventBus>();
messageBus.onMessage('stringLength', (message) => {
return message.data.length;
});
messageBus.sendMessage(
'stringLength',
'some string',
'background',
);
interface ITestEventBus {
testEvent: string;
}
const eventBus = definePegasusEventBus<ITestEventBus>();
eventBus.onBroadcastEvent('testEvent', (message) => {
console.log('received test-event with', message.data, 'from', message.sender);
});
eventBus.emitBroadcastEvent(
'testEvent',
'Hello world from background script!',
);
Available entrypoints:
@webext-pegasus/transport/background
@webext-pegasus/transport/content-script
@webext-pegasus/transport/devtools
@webext-pegasus/transport/options
@webext-pegasus/transport/popup
@webext-pegasus/transport/window
(for injected scripts)
Troubleshooting
-
Doesn't work?
If window
contexts are not part of the puzzle, it shall out of the box for messaging between devtools
<-> background
<-> content-script
(s). If even that is not working, it's likely that @webext-pegasus/transport
hasn't been initialized in background
page of your extension, which is used as a relay for all events/messages. If you don't need a background page for yourself, here's bare minimum to get Pegasus flying.
import { initPegasusTransport } from '@webext-pegasus/transport/background';
initPegasusTransport();
{
"background": {
"scripts": ["path/to/transpiled/background.js"]
}
}
-
Can't send messages to / receive from window
?
Sending or receiving messages from or to window
requires you to open the messaging gateway in content script(s) for that particular tab. Call initPegasusTransport({allowWindowMessagingForNamespace: '...'})
while passing allowWindowMessagingForNamespace
option in any of your content script(s) in that tab and call initPegasusTransport({namespace: '...'})
in the
script loaded in top frame i.e the window
context. Make sure that namespaceA === namespaceB
. If you're doing this, read the security note below
Security risks while communicating with injected script
The following note only applies if and only if, you will be sending/receiving messages to/from window
contexts. There's no security concern if you will be only working with content-script
, background
, popup
, options
, or devtools
scope, which is the default setting.
window
context(s) in tab A
get unlocked the moment you call initPegasusTransport({allowWindowMessagingForNamespace: 'TEST'})
in your extension's content script AND initPegasusTransport({namespace: 'TEST'})
in your injected script.
Unlike chrome.runtime.sendMessage
and chrome.runtime.connect
, which requires extension's manifest to specify sites allowed to talk with the extension, this package has no such measure by design, which means any webpage whether you intended or not, can do sendMessage(msgId, data, 'background')
or something similar that produces same effect, as long as it uses same protocol used by this library and namespace set to same as yours.
So to be safe, if you will be interacting with window
contexts, treat incoming data as you would treat user input.
As an example if you plan on having something critical, always verify the sender
before responding:
import { onMessage } from '@webext-pegasus/transport/background';
onMessage("getUserBrowsingHistory", (message) => {
const { data, sender } = message;
});
Credits
This library is based on the Server Side Up's implementation of the webext-bridge in context of RPC stack. However it simplifies use of the sendMessage
/onMessage
APIs in conponents that may be present within different runtime contexts.