Я создал следующий код с помощью дополнительного пакета Firefox SDK, который успешно добавляет уведомление к NotificationBox
на текущей активной вкладке во время загрузки страницы.
Как изменить его, чтобы использовать параметризованную версию метода getNotificationBox()
, чтобы выбрать NotificationBox
на вкладке, которая принадлежит загружаемому Document
?
const observer = require( 'observer-service' );
var {Cc, Ci, Cr, Cu} = require( 'chrome' );
observer.add( 'document-element-inserted', function( document ) {
var window = document.defaultView;
var mainWindow = window.QueryInterface( Ci.nsIInterfaceRequestor )
.getInterface( Ci.nsIWebNavigation )
.QueryInterface( Ci.nsIDocShellTreeItem )
.rootTreeItem
.QueryInterface( Ci.nsIInterfaceRequestor )
.getInterface( Ci.nsIDOMWindow );
var notificationBox = mainWindow.gBrowser.getNotificationBox();
notificationBox.appendNotification(
'This is my message',
'myNotifyId',
'chrome://global/skin/icons/information-16.png',
notificationBox.PRIORITY_INFO_LOW
);
});