2014-12-17 13:33:53 -07:00
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
µBlock - a browser extension to block requests.
|
|
|
|
Copyright (C) 2014 The µBlock authors
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see {http://www.gnu.org/licenses/}.
|
|
|
|
|
|
|
|
Home: https://github.com/gorhill/uBlock
|
|
|
|
*/
|
|
|
|
|
2014-12-18 06:43:34 -07:00
|
|
|
/* global APP_SHUTDOWN */
|
2014-11-24 12:00:27 -07:00
|
|
|
/* exported startup, shutdown, install, uninstall */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2014-12-17 13:33:53 -07:00
|
|
|
/******************************************************************************/
|
2014-11-24 12:00:27 -07:00
|
|
|
|
2014-12-18 06:43:34 -07:00
|
|
|
let bgProcess;
|
2014-12-17 13:33:53 -07:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-12-18 06:43:34 -07:00
|
|
|
function startup(data) {
|
|
|
|
let {AddonManager} = Components.utils['import'](
|
|
|
|
'resource://gre/modules/AddonManager.jsm',
|
|
|
|
null
|
|
|
|
);
|
|
|
|
|
|
|
|
AddonManager.getAddonByID(data.id, addon => {
|
|
|
|
let hDoc = Components.classes['@mozilla.org/appshell/appShellService;1']
|
|
|
|
.getService(Components.interfaces.nsIAppShellService)
|
|
|
|
.hiddenDOMWindow.document;
|
2014-12-02 00:35:25 -07:00
|
|
|
|
2014-12-18 06:43:34 -07:00
|
|
|
bgProcess = hDoc.documentElement.appendChild(
|
|
|
|
hDoc.createElementNS('http://www.w3.org/1999/xhtml', 'iframe')
|
2014-12-02 00:35:25 -07:00
|
|
|
);
|
2014-12-18 06:43:34 -07:00
|
|
|
|
|
|
|
let bgURI = 'chrome://ublock/content/background.html';
|
|
|
|
|
|
|
|
// send addon data synchronously to the background script
|
|
|
|
bgProcess.src = bgURI + '#' + [addon.name, addon.version];
|
|
|
|
});
|
2014-11-24 12:00:27 -07:00
|
|
|
}
|
|
|
|
|
2014-12-17 13:33:53 -07:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2014-11-24 12:00:27 -07:00
|
|
|
function shutdown(data, reason) {
|
2014-12-02 00:35:25 -07:00
|
|
|
if (reason !== APP_SHUTDOWN) {
|
|
|
|
bgProcess.parentNode.removeChild(bgProcess);
|
|
|
|
}
|
2014-11-24 12:00:27 -07:00
|
|
|
}
|
|
|
|
|
2014-12-17 13:33:53 -07:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
function install() {
|
|
|
|
// https://bugzil.la/719376
|
2014-12-18 06:43:34 -07:00
|
|
|
Components.classes['@mozilla.org/intl/stringbundle;1']
|
|
|
|
.getService(Components.interfaces.nsIStringBundleService).flushBundles();
|
2014-12-17 13:33:53 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/******************************************************************************/
|
2014-11-24 12:00:27 -07:00
|
|
|
|
2014-12-16 05:44:34 -07:00
|
|
|
function uninstall() {}
|
2014-12-17 13:33:53 -07:00
|
|
|
|
|
|
|
/******************************************************************************/
|