description |
---|
Extending the example extension to use a content script. |
In the fourth part of the Hello World Extension Tutorial, we will introduce the concept of content scripts.
We will add a banner to the top of the message display area, displaying some information about the currently viewed message. The banner will also include a button to mark the currently viewed message as unread.
Content Scripts are JavaScript files that are loaded and executed in content pages. This technology was mainly developed for browsers, where it is used to interact with the currently viewed web page.
In addition to standard content scripts, Thunderbird supports the following special types of content scripts:
- compose scripts loaded into the editor of the message composer
- message display scripts loaded into rendered messages when displayed to the user
We will be using a message display script in this example. In order to register one, we use the messageDisplayScripts
API and add the following code to our background script:
// Register the message display script for all newly opened message tabs.
messenger.messageDisplayScripts.register({
js: [{ file: "messageDisplay/message-content-script.js" }],
css: [{ file: "messageDisplay/message-content-styles.css" }],
});
// Inject script and CSS in all already open message tabs.
let openTabs = await messenger.tabs.query();
let messageTabs = openTabs.filter(
tab => ["mail", "messageDisplay"].includes(tab.type)
);
for (let messageTab of messageTabs) {
browser.tabs.executeScript(messageTab.id, {
file: "messageDisplay/message-content-script.js"
})
browser.tabs.insertCSS(messageTab.id, {
file: "messageDisplay/message-content-styles.css"
})
}
{% hint style="warning" %}
The messageDisplayScripts
API requires the messagesModify
permission, which needs to be added to the permissions
key in our manifest.json
file.
{% endhint %}
Whenever a message is displayed to the user, the registered CSS file will be added and the registered JavaScript file will be injected and executed.
Let's create a messageDisplay
directory inside our hello-world
project folder with the following two files:
.thunderbirdMessageDisplayActionExample {
background-color: #d70022;
color: white;
font-weight: 400;
padding: 0.25rem 0.5rem;
margin-bottom: 0.25rem;
display: flex;
}
.thunderbirdMessageDisplayActionExample_Text {
flex-grow: 1;
}
{% code title="message-content-script.js" lineNumbers="true" %}
async function showBanner() {
let bannerDetails = await browser.runtime.sendMessage({
command: "getBannerDetails",
});
// Get the details back from the formerly serialized content.
const { text } = bannerDetails;
// Create the banner element itself.
const banner = document.createElement("div");
banner.className = "thunderbirdMessageDisplayActionExample";
// Create the banner text element.
const bannerText = document.createElement("div");
bannerText.className = "thunderbirdMessageDisplayActionExample_Text";
bannerText.innerText = text;
// Create a button to display it in the banner.
const markUnreadButton = document.createElement("button");
markUnreadButton.innerText = "Mark unread";
markUnreadButton.addEventListener("click", async () => {
// Add the button event handler to send the command to the
// background script.
browser.runtime.sendMessage({
command: "markUnread",
});
});
// Add text and button to the banner.
banner.appendChild(bannerText);
banner.appendChild(markUnreadButton);
// Insert it as the very first element in the message.
document.body.insertBefore(banner, document.body.firstChild);
};
showBanner();
{% endcode %}
{% hint style="danger" %}
Content scripts cannot yet be loaded as top level ES6 modules. They cannot load other ES6 modules. They can also not use the async
keyword in file scope code, we therefore have to create the async wrapper function showBanner()
.
{% endhint %}
The main purpose of the message-content-script.js
file is to manipulate the rendered message and add a banner at its top. We use basic DOM manipulation techniques.
What is special however is how the displayed information is retrieved. In the second part of this tutorial, we used the tabs
API and the messageDisplay
API from our background page, to learn which message is currently displayed and then used the messages
API to get the required information. This does not work for content scripts, as their access is limited. Instead, we have to request this information from the background script using runtime messaging.
The sendMessage()
method of the runtime
API will send a message to each active page, including the background page, the options page, popup pages and other HTML pages of our extension loaded using windows.create()
or tabs.create()
. The message itself can be a string, an integer, a boolean, an array or an object. It must abide to the structured clone algorithm.
In line 2
of message-content-script.js
, we send the message object {command: "getBannerDetails"}
, to request the display details from the background page. In line 24
we send the message object {command: "markUnread"}
, to request the background page to mark the currently viewed message as unread.
The background page can listen for runtime messages, by registering the following listener:
/**
* Add a handler for the communication with other parts of the extension,
* like our message display script.
*
* Note: It is best practice to always define a synchronous listener
* function for the runtime.onMessage event.
* If defined asynchronously, it will always return a Promise
* and therefore answer all messages, even if a different listener
* defined elsewhere is supposed to handle these.
*
* The listener should only return a Promise for messages it is
* actually supposed to handle.
*/
messenger.runtime.onMessage.addListener((message, sender, sendResponse) => {
// Check what type of message we have received and invoke the appropriate
// handler function.
if (message && message.hasOwnProperty("command")) {
return commandHandler(message, sender);
}
// Return false if the message was not handled by this listener.
return false;
});
// The actual (asynchronous) handler for command messages.
async function commandHandler(message, sender) {
// Get the message currently displayed in the sending tab, abort if
// that failed.
const messageHeader = await messenger.messageDisplay.getDisplayedMessage(
sender.tab.id
);
if (!messageHeader) {
return;
}
// Check for known commands.
switch (message.command) {
case "getBannerDetails":
// Create the information we want to return to our message display
// script.
return { text: `Mail subject is "${messageHeader.subject}"` };
case "markUnread":
// Mark the message as unread.
messenger.messages.update(messageHeader.id, {
read: false,
});
break;
}
}
The message
passed to the onMessage
listener will be whatever has been sent using sendMessage().
The sender
is of type MessageSender
and will include the sending tab.
In this example, we check if the runtime message includes our command and based on its value either return the banner details or mark the viewed message as unread.
{% hint style="danger" %}
Note: The onMessage
listener has a third parameter sendResponse
, which is a callback function to send a synchronous response back to the sending tab. For Thunderbird however the preferred way is to return an asynchronous response using a Promise instead.
Note: It is best practice to always define a synchronous listener function for the runtime.onMessage
event. If defined asynchronously, it will always return a Promise and therefore answer all messages, even if a different listener defined elsewhere is supposed to handle these.
The listener should only return a Promise for messages it is actually supposed to handle. {% endhint %}
Let's double-check that we made the correct changes and have all the files in the right places:
hello-world/
├── background.html
├── background.js
├── manifest.json
├── images/
├── internet.png
├── internet-16px.png
└── internet-32px.png
├── mainPopup/
├── popup.css
├── popup.html
└── popup.js
├── messageDisplay/
├── message-content-script.js
└── message-content-styles.css
├── messagePopup/
├── popup.css
├── popup.html
└── popup.js
└── modules/
└── messageTools.mjs
This is how our manifest.json
should now look like:
{% code title="manifest.json" %}
{
"manifest_version": 2,
"name": "Hello World Example",
"description": "A basic Hello World example extension!",
"version": "4.0",
"author": "Thunderbird Team",
"browser_specific_settings": {
"gecko": {
"id": "[email protected]",
"strict_min_version": "78.0"
}
},
"browser_action": {
"default_popup": "mainPopup/popup.html",
"default_title": "Hello World",
"default_icon": "images/internet-32px.png"
},
"message_display_action": {
"default_popup": "messagePopup/popup.html",
"default_title": "Details",
"default_icon": "images/internet-32px.png"
},
"permissions": [
"messagesRead",
"accountsRead",
"storage",
"menus",
"notifications",
"messagesModify"
],
"background": {
"page": "background.html"
},
"icons": {
"64": "images/internet.png",
"32": "images/internet-32px.png",
"16": "images/internet-16px.png"
}
}
{% endcode %}
Our background script should look as follows:
// Import all functions defined in the messageTools module.
import * as messageTools from '/modules/messageTools.mjs';
// Add a listener for the onNewMailReceived events.
messenger.messages.onNewMailReceived.addListener(async (folder, messages) => {
let { messageLog } = await messenger.storage.local.get({ messageLog: [] });
for await (let message of messageTools.iterateMessagePages(messages)) {
messageLog.push({
folder: folder.name,
time: Date.now(),
message: message
})
}
await messenger.storage.local.set({ messageLog });
})
// Create the menu entries.
let menu_id = await messenger.menus.create({
title: "Show received email",
contexts: [
"browser_action",
"tools_menu"
],
});
// Register a listener for the menus.onClicked event.
await messenger.menus.onClicked.addListener(async (info, tab) => {
if (info.menuItemId == menu_id) {
// Our menu entry was clicked
let { messageLog } = await messenger.storage.local.get({ messageLog: [] });
let now = Date.now();
let last24h = messageLog.filter(e => (now - e.time) < 24 * 60 * 1000);
for (let entry of last24h) {
messenger.notifications.create({
"type": "basic",
"iconUrl": "images/internet.png",
"title": `${entry.folder}: ${entry.message.author}`,
"message": entry.message.subject
});
}
}
});
// Register the message display script.
messenger.messageDisplayScripts.register({
js: [{ file: "messageDisplay/message-content-script.js" }],
css: [{ file: "messageDisplay/message-content-styles.css" }],
});
/**
* Add a handler for the communication with other parts of the extension,
* like our message display script.
*
* Note: It is best practice to always define a synchronous listener
* function for the runtime.onMessage event.
* If defined asynchronously, it will always return a Promise
* and therefore answer all messages, even if a different listener
* defined elsewhere is supposed to handle these.
*
* The listener should only return a Promise for messages it is
* actually supposed to handle.
*/
messenger.runtime.onMessage.addListener((message, sender, sendResponse) => {
// Check what type of message we have received and invoke the appropriate
// handler function.
if (message && message.hasOwnProperty("command")) {
return commandHandler(message, sender);
}
// Return false if the message was not handled by this listener.
return false;
});
// The actual (asynchronous) handler for command messages.
async function commandHandler(message, sender) {
// Get the message currently displayed in the sending tab, abort if
// that failed.
const messageHeader = await messenger.messageDisplay.getDisplayedMessage(
sender.tab.id
);
if (!messageHeader) {
return;
}
// Check for known commands.
switch (message.command) {
case "getBannerDetails":
// Create the information we want to return to our message display
// script.
return { text: `Mail subject is "${messageHeader.subject}"` };
case "markUnread":
// Mark the message as unread.
messenger.messages.update(messageHeader.id, {
read: false,
});
break;
}
}
As described in the first part of the Hello World Extension Tutorial, go to the Add-ons Manager to open the Debug Add-on Page and temporarily install the extension.
Open a message. There should be a red banner added at the top of it with its subject and a button labelled "Mark unread". Clicking that button should mark the message as unread