indie-reply-button/background.js
Jeena 760adf4d85 Initial commit
The first version of the plugin with a hard coded url to my website.
2018-01-29 19:06:17 +01:00

13 lines
344 B
JavaScript

function openPage(url) {
browser.tabs.create({
url: "https://jeena.net/notes/new?in_reply_to=" + url
});
}
async function buttonClicked() {
const [tab] = await browser.tabs.query({currentWindow: true, active:true});
console.log(tab)
openPage(tab.url);
}
browser.browserAction.onClicked.addListener(buttonClicked);