Index: chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js |
diff --git a/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js b/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..03800c63123123b6f5e96d49838d4ae6d1435853 |
--- /dev/null |
+++ b/chrome/common/extensions/docs/examples/howto/sandbox/eventpage.js |
@@ -0,0 +1,24 @@ |
+// 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) { |
+ var notification = webkitNotifications.createNotification( |
+ 'icon.png', |
+ 'Templated!', |
+ 'HTML Received for "' + event.data.name + '": `' + event.data.html + '`' |
+ ); |
+ notification.show(); |
+ } |
+}); |