mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-17 14:59:12 +02:00
9 lines
312 B
JavaScript
9 lines
312 B
JavaScript
// Connect to the background page.
|
|
var port = chrome.runtime.connect();
|
|
|
|
// Handle click events on the toolbar button.
|
|
document.querySelector("#toggle").addEventListener("click", function() {
|
|
// Ask the background page to toggle the toolbar on the current tab
|
|
port.postMessage("toggle-in-page-toolbar");
|
|
});
|