スクリプト(background.js)をの背景として設定しmanifest.json
ます。
そして、background.jsにコードブローを記述します。
var source = new EventSource('http://localhost:8086/test/');
source.addEventListener('ping', function (e) {
var notification = webkitNotifications.createNotification(
'test.png',
'testTitle',
'testContent'
);
notification.show();
}, false);
これらのコードは、の下の通常のhtmlページとして正しく実行できますがhttp://localhost:8086/
、Chrome拡張機能ではまったく実行されません。
私はhttp://localhost:8086/
manifest.jsonの「許可」を入れました。