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

162 lines
5.3 KiB
JavaScript
Raw Normal View History

2014-10-18 08:01:09 +13:00
/*******************************************************************************
µMatrix - a Chromium browser extension to black/white list requests.
Copyright (C) 2014-2017 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
*/
2014-10-27 12:27:24 +13:00
/* global µMatrix */
2014-10-18 08:01:09 +13:00
// 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 defaultLocalUserSettings = {
2016-06-06 01:11:34 +12:00
// data-URI background courtesy of https://github.com/dev-random
// https://github.com/gorhill/uMatrix/issues/429#issuecomment-194548243
2015-05-03 23:10:05 +12:00
placeholderBackground: [
2016-06-06 01:11:34 +12:00
'url("data:image/png;base64,',
'iVBORw0KGgoAAAANSUhEUgAAAAoAAAAK',
'CAAAAACoWZBhAAAABGdBTUEAALGPC/xh',
'BQAAAAJiS0dEAP+Hj8y/AAAAB3RJTUUH',
'3wwIAAgyL/YaPAAAACJJREFUCFtjfMbO',
'AAQ/gZiFnQPEBAEmGIMIJgtIL8QEgtoA',
'In4D/96X1KAAAAAldEVYdGRhdGU6Y3Jl',
'YXRlADIwMTUtMTItMDhUMDA6MDg6NTAr',
'MDM6MDAasuuJAAAAJXRFWHRkYXRlOm1v',
'ZGlmeQAyMDE1LTEyLTA4VDAwOjA4OjUw',
'KzAzOjAwa+9TNQAAAABJRU5ErkJggg==',
'") ',
'repeat scroll #fff'
2015-05-03 23:10:05 +12:00
].join(''),
2015-05-03 23:33:24 +12:00
placeholderBorder: '1px solid rgba(0, 0, 0, 0.05)',
2015-05-03 23:10:05 +12:00
placeholderDocument: [
'<html><head>',
'<meta charset="utf-8">',
'<style>',
2015-05-04 00:18:06 +12:00
'body { ',
'background: {{bg}};',
'color: gray;',
'font: 12px sans-serif;',
'margin: 0;',
2015-05-05 09:49:15 +12:00
'overflow: hidden;',
2015-05-04 00:18:06 +12:00
'padding: 2px;',
'white-space: nowrap;',
'}',
2015-05-11 09:59:58 +12:00
'a { ',
'color: inherit;',
'padding: 0 3px;',
'text-decoration: none;',
'}',
2015-05-04 00:18:06 +12:00
'</style></head><body>',
2015-05-11 09:59:58 +12:00
'<a href="{{url}}" title="{{url}}" target="_blank">&#x2191;</a>{{url}}',
2015-05-04 00:18:06 +12:00
'</body></html>'
2015-05-03 23:10:05 +12:00
].join(''),
placeholderImage: 'data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='
};
var rwLocalUserSettings = {
placeholderBackground: true,
placeholderBorder: true,
placeholderImage: true
2015-05-03 23:10:05 +12:00
};
/******************************************************************************/
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
2015-05-03 23:10:05 +12:00
for ( var key in defaultLocalUserSettings ) {
if ( defaultLocalUserSettings.hasOwnProperty(key) === false ) {
continue;
}
if (
vAPI.localStorage.getItem(key) === null ||
rwLocalUserSettings.hasOwnProperty(key) === false
) {
2015-05-03 23:10:05 +12:00
vAPI.localStorage.setItem(key, defaultLocalUserSettings[key]);
}
}
2015-09-09 02:49:41 +12:00
vAPI.cloud.start([ 'myRulesPane' ]);
2015-05-03 04:07:40 +12:00
};
var onTabsReady = function(tabs) {
var tab;
var i = tabs.length;
// console.debug('start.js > binding %d tabs', i);
while ( i-- ) {
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();
};
2015-05-09 01:02:12 +12:00
var onUserSettingsLoaded = function() {
// Version 0.9.0.0
// Remove obsolete user settings which may have been loaded.
// These are now stored as local settings:
delete µm.userSettings.popupCollapseDomains;
delete µm.userSettings.popupCollapseSpecificDomains;
delete µm.userSettings.popupHideBlacklisted;
// These do not exist anymore:
2015-05-12 22:36:30 +12:00
delete µm.smartAutoReload;
delete µm.userSettings.statsFilters;
2015-05-12 22:36:30 +12:00
delete µm.userSettings.subframeColor;
delete µm.userSettings.subframeOpacity;
µm.loadHostsFiles();
2015-05-09 01:02:12 +12:00
};
var onPSLReady = function() {
µm.loadUserSettings(onUserSettingsLoaded);
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
2015-05-16 15:05:37 +12:00
µm.pageStores[vAPI.noTabId] = µm.PageStore.factory(µm.tabContextManager.mustLookup(vAPI.noTabId));
µm.pageStores[vAPI.noTabId].title = vAPI.i18n('statsPageDetailedBehindTheScenePage');
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
2015-05-03 04:07:40 +12:00
// Must be done ASAP
µm.loadPublicSuffixList(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
/******************************************************************************/