Index: chrome/ext/common.js |
=================================================================== |
--- a/chrome/ext/common.js |
+++ b/chrome/ext/common.js |
@@ -112,4 +112,7 @@ |
ext.backgroundPage.sendMessage = chrome.extension.sendMessage; |
else |
ext.backgroundPage.sendMessage = chrome.extension.sendRequest; |
+ |
+ if ("notifications" in chrome) |
Thomas Greiner
2014/02/18 14:26:17
Add a check for the OS name because Linux support
saroyanm
2014/02/18 16:20:28
Done.
|
+ ext.notifications = chrome.notifications; |
})(); |