18 lines
451 B
JavaScript
18 lines
451 B
JavaScript
chrome.runtime.onMessage.addListener(
|
|
function(request, sender, sendResponse) {
|
|
|
|
if (request.type == "notification")
|
|
{
|
|
options = {
|
|
type: "basic",
|
|
title : "gPass",
|
|
message : request.options.message,
|
|
iconUrl:chrome.extension.getURL("gpass_icon_64.png")
|
|
};
|
|
|
|
chrome.notifications.create("gPass", options, function(){});
|
|
|
|
window.setTimeout(function() {chrome.notifications.clear("gPass", function(){})}, 2000);
|
|
}
|
|
});
|