2018-10-24 11:38:21 +02:00
|
|
|
|
2012-09-11 18:09:43 +02:00
|
|
|
var url = window.location.href;
|
|
|
|
var re = /\?event=(\d+)/;
|
|
|
|
if(re.exec(url)) {
|
|
|
|
if(!isNaN(RegExp.$1)) {
|
|
|
|
var eventId = RegExp.$1;
|
|
|
|
document.write(chrome.extension.getBackgroundPage().getNotification(eventId));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
window.onload = function () {
|
|
|
|
setTimeout(function() {
|
|
|
|
window.close();
|
|
|
|
}, 10000);
|
|
|
|
}
|