postify/postify.js
Anton Vakhrushev a10e24198e Add shortcut
2018-08-23 09:16:44 +03:00

19 lines
362 B
JavaScript

const APP_NAME = 'Postify';
function sendUrl(url) {
browser.notifications.create({
"type": "basic",
"iconUrl": browser.extension.getURL("icons/postify-48.png"),
"title": APP_NAME,
"message": url,
});
}
function sendCurrentUrl(args) {
if (args.url) {
sendUrl(args.url)
}
}
browser.browserAction.onClicked.addListener(sendCurrentUrl);