mirror of
https://github.com/mdn/webextensions-examples.git
synced 2026-04-16 06:18:35 +02:00
17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
/*
|
|
Open a new tab, and load "my-page.html" into it.
|
|
*/
|
|
function openMyPage() {
|
|
console.log("injecting");
|
|
browser.tabs.create({
|
|
"url": "/my-page.html"
|
|
});
|
|
}
|
|
|
|
|
|
/*
|
|
Add openMyPage() as a listener to clicks on the browser action.
|
|
*/
|
|
browser.browserAction.onClicked.addListener(openMyPage);
|
|
|