1
0
Fork 0
mirror of https://github.com/gorhill/uMatrix.git synced 2024-06-26 18:10:39 +12:00
uMatrix/src/js/start.js

108 lines
3.2 KiB
JavaScript
Raw Normal View History

2014-10-18 08:01:09 +13:00
/*******************************************************************************
uMatrix - a browser extension to black/white list requests.
Copyright (C) 2014-2018 Raymond Hill
2014-10-18 08:01:09 +13:00
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/uMatrix
*/
// ORDER IS IMPORTANT
/******************************************************************************/
2015-05-03 04:07:40 +12:00
// Load everything
2014-10-26 16:30:43 +13:00
2014-10-28 17:14:15 +13:00
(function() {
2015-05-03 04:07:40 +12:00
'use strict';
2014-10-26 16:30:43 +13:00
/******************************************************************************/
2015-05-03 04:07:40 +12:00
var µm = µMatrix;
2014-10-18 08:01:09 +13:00
2015-05-03 23:10:05 +12:00
/******************************************************************************/
var processCallbackQueue = function(queue, callback) {
var processOne = function() {
var fn = queue.pop();
if ( fn ) {
fn(processOne);
} else if ( typeof callback === 'function' ) {
callback();
}
};
processOne();
};
/******************************************************************************/
2015-05-03 04:07:40 +12:00
var onAllDone = function() {
µm.webRequest.start();
µm.assets.addObserver(µm.assetObserver.bind(µm));
µm.scheduleAssetUpdater(µm.userSettings.autoUpdate ? 7 * 60 * 1000 : 0);
2015-05-03 04:07:40 +12:00
vAPI.cloud.start([ 'myRulesPane' ]);
2015-05-03 04:07:40 +12:00
};
2018-01-07 12:00:28 +13:00
/******************************************************************************/
2015-05-03 04:07:40 +12:00
var onTabsReady = function(tabs) {
let i = tabs.length;
2015-05-03 04:07:40 +12:00
while ( i-- ) {
let tab = tabs[i];
2015-11-16 11:33:05 +13:00
µm.tabContextManager.push(tab.id, tab.url, 'newURL');
2015-05-03 04:07:40 +12:00
}
onAllDone();
};
2018-01-07 12:00:28 +13:00
/******************************************************************************/
2015-05-09 01:02:12 +12:00
var onUserSettingsLoaded = function() {
µm.loadHostsFiles();
2018-01-30 11:19:42 +13:00
µm.loadRecipes();
2015-05-09 01:02:12 +12:00
};
2018-01-07 12:00:28 +13:00
/******************************************************************************/
2015-05-09 01:02:12 +12:00
var onPSLReady = function() {
µm.loadUserSettings(onUserSettingsLoaded);
2018-01-07 12:00:28 +13:00
µm.loadRawSettings();
2015-05-05 12:26:45 +12:00
µm.loadMatrix();
2014-10-18 08:01:09 +13:00
2015-05-03 04:07:40 +12:00
// rhill 2013-11-24: bind behind-the-scene virtual tab/url manually, since the
// normal way forbid binding behind the scene tab.
// https://github.com/gorhill/httpswitchboard/issues/67
let pageStore =
µm.pageStoreFactory(µm.tabContextManager.mustLookup(vAPI.noTabId));
pageStore.title = vAPI.i18n('statsPageDetailedBehindTheScenePage');
µm.pageStores.set(vAPI.noTabId, pageStore);
2014-10-18 08:01:09 +13:00
2015-05-03 04:07:40 +12:00
vAPI.tabs.getAll(onTabsReady);
};
2014-10-18 08:01:09 +13:00
2018-01-07 12:00:28 +13:00
/******************************************************************************/
processCallbackQueue(µm.onBeforeStartQueue, function() {
µm.publicSuffixList.load(onPSLReady);
});
2014-10-18 08:01:09 +13:00
/******************************************************************************/
2014-10-26 16:30:43 +13:00
})();
2014-10-26 16:30:43 +13:00
/******************************************************************************/