mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
* Added example of using export helpers * stop using wrapedJSObject with exportFunction; remove createObjectIn * Updated for review comments * Fix content_scripts 'matches' property
11 lines
257 B
JavaScript
11 lines
257 B
JavaScript
/**
|
|
* Show a notification when we get messages from the content script.
|
|
*/
|
|
browser.runtime.onMessage.addListener((message) => {
|
|
browser.notifications.create({
|
|
type: "basic",
|
|
title: "Message from the page",
|
|
message: message.content
|
|
});
|
|
});
|