Files
webextensions-examples/export-helpers/background.js
2017-10-10 11:59:15 -07:00

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
});
});