forked from GoogleChrome/chrome-extensions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheventpage.js
More file actions
23 lines (20 loc) · 660 Bytes
/
eventpage.js
File metadata and controls
23 lines (20 loc) · 660 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
chrome.browserAction.onClicked.addListener(function() {
var iframe = document.getElementById('theFrame');
var message = {
command: 'render',
context: {thing: 'world'}
};
iframe.contentWindow.postMessage(message, '*');
});
window.addEventListener('message', function(event) {
if (event.data.html) {
new Notification('Templated!', {
icon: 'icon.png',
body: 'HTML Received for "' + event.data.name + '": `' +
event.data.html + '`'
});
}
});