2014-06-24 00:42:43 +02:00
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
2016-06-29 04:01:15 +02:00
|
|
|
|
uBlock Origin - a browser extension to block requests.
|
2017-01-18 19:17:47 +01:00
|
|
|
|
Copyright (C) 2014-2017 Raymond Hill
|
2014-06-24 00:42:43 +02: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/uBlock
|
|
|
|
|
*/
|
|
|
|
|
|
2015-08-18 19:15:58 +02:00
|
|
|
|
'use strict';
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
|
var µBlock = (function() { // jshint ignore:line
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-08-21 05:19:27 +02:00
|
|
|
|
var oneSecond = 1000;
|
|
|
|
|
var oneMinute = 60 * oneSecond;
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-09-26 03:21:55 +02:00
|
|
|
|
var defaultExternalLists = [
|
|
|
|
|
'! Examples:',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/fb_annoyances_full.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/yt_annoyances_full.txt',
|
2015-11-20 14:47:29 +01:00
|
|
|
|
''
|
2014-09-26 03:21:55 +02:00
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
return {
|
2016-01-03 19:58:25 +01:00
|
|
|
|
firstInstall: false,
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
userSettings: {
|
2015-01-06 17:44:06 +01:00
|
|
|
|
advancedUserEnabled: false,
|
2016-09-16 23:41:17 +02:00
|
|
|
|
alwaysDetachLogger: false,
|
2014-08-20 02:41:52 +02:00
|
|
|
|
autoUpdate: true,
|
2015-12-13 06:56:30 +01:00
|
|
|
|
cloudStorageEnabled: false,
|
2014-06-27 23:06:42 +02:00
|
|
|
|
collapseBlocked: true,
|
2015-04-22 16:46:10 +02:00
|
|
|
|
colorBlindFriendly: false,
|
2014-10-04 20:50:50 +02:00
|
|
|
|
contextMenuEnabled: true,
|
2016-11-05 19:48:42 +01:00
|
|
|
|
dynamicFilteringEnabled: false,
|
2014-09-26 03:21:55 +02:00
|
|
|
|
externalLists: defaultExternalLists,
|
2015-02-18 15:15:59 +01:00
|
|
|
|
firewallPaneMinimized: true,
|
2015-06-02 14:26:35 +02:00
|
|
|
|
hyperlinkAuditingDisabled: true,
|
2016-08-13 22:42:58 +02:00
|
|
|
|
ignoreGenericCosmeticFilters: false,
|
2016-01-17 19:30:43 +01:00
|
|
|
|
largeMediaSize: 50,
|
2014-06-24 00:42:43 +02:00
|
|
|
|
parseAllABPHideFilters: true,
|
2015-06-01 21:03:22 +02:00
|
|
|
|
prefetchingDisabled: true,
|
2015-03-09 06:09:27 +01:00
|
|
|
|
requestLogMaxEntries: 1000,
|
2015-06-25 02:01:27 +02:00
|
|
|
|
showIconBadge: true,
|
2015-12-13 06:56:30 +01:00
|
|
|
|
tooltipsDisabled: false,
|
2015-06-25 02:01:27 +02:00
|
|
|
|
webrtcIPAddressHidden: false
|
2014-06-24 00:42:43 +02:00
|
|
|
|
},
|
2014-08-25 02:52:34 +02:00
|
|
|
|
|
2016-11-03 16:20:47 +01:00
|
|
|
|
hiddenSettingsDefault: {
|
2017-01-18 19:17:47 +01:00
|
|
|
|
assetFetchTimeout: 30,
|
|
|
|
|
autoUpdateAssetFetchPeriod: 120,
|
|
|
|
|
autoUpdatePeriod: 7,
|
2016-11-03 16:20:47 +01:00
|
|
|
|
ignoreRedirectFilters: false,
|
|
|
|
|
ignoreScriptInjectFilters: false,
|
2017-01-18 19:17:47 +01:00
|
|
|
|
manualUpdateAssetFetchPeriod: 2000,
|
2016-11-06 22:27:21 +01:00
|
|
|
|
popupFontSize: 'unset',
|
2016-11-03 16:20:47 +01:00
|
|
|
|
suspendTabsUntilReady: false
|
|
|
|
|
},
|
|
|
|
|
// This will be filled ASAP:
|
|
|
|
|
hiddenSettings: {},
|
|
|
|
|
|
2016-10-19 16:20:26 +02:00
|
|
|
|
// Features detection.
|
|
|
|
|
privacySettingsSupported: vAPI.browserSettings instanceof Object,
|
|
|
|
|
cloudStorageSupported: vAPI.cloud instanceof Object,
|
|
|
|
|
|
2015-04-07 03:26:05 +02:00
|
|
|
|
// https://github.com/chrisaljoudi/uBlock/issues/180
|
2014-08-25 02:52:34 +02:00
|
|
|
|
// Whitelist directives need to be loaded once the PSL is available
|
|
|
|
|
netWhitelist: {},
|
|
|
|
|
netWhitelistModifyTime: 0,
|
2015-01-24 18:06:22 +01:00
|
|
|
|
netWhitelistDefault: [
|
2015-04-27 16:54:13 +02:00
|
|
|
|
'about-scheme',
|
2015-01-24 18:06:22 +01:00
|
|
|
|
'behind-the-scene',
|
|
|
|
|
'chrome-extension-scheme',
|
|
|
|
|
'chrome-scheme',
|
2015-04-27 16:54:13 +02:00
|
|
|
|
'loopconversation.about-scheme',
|
2016-10-26 18:40:05 +02:00
|
|
|
|
'moz-extension-scheme',
|
2015-04-16 16:45:20 +02:00
|
|
|
|
'opera-scheme',
|
2016-08-24 15:05:36 +02:00
|
|
|
|
'vivaldi-scheme',
|
2015-04-16 16:45:20 +02:00
|
|
|
|
''
|
2016-10-26 18:40:05 +02:00
|
|
|
|
].join('\n'),
|
2014-08-25 02:52:34 +02:00
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
localSettings: {
|
|
|
|
|
blockedRequestCount: 0,
|
2015-04-18 13:30:52 +02:00
|
|
|
|
allowedRequestCount: 0
|
2014-06-24 00:42:43 +02:00
|
|
|
|
},
|
2016-10-08 16:15:31 +02:00
|
|
|
|
localSettingsLastModified: 0,
|
|
|
|
|
localSettingsLastSaved: 0,
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
2015-02-24 00:31:29 +01:00
|
|
|
|
// read-only
|
|
|
|
|
systemSettings: {
|
2017-01-19 14:35:08 +01:00
|
|
|
|
compiledMagic: 'fxtcjjhbhyiw',
|
|
|
|
|
selfieMagic: 'fxtcjjhbhyiw'
|
2015-02-24 00:31:29 +01:00
|
|
|
|
},
|
|
|
|
|
|
2015-03-07 05:36:09 +01:00
|
|
|
|
restoreBackupSettings: {
|
|
|
|
|
lastRestoreFile: '',
|
|
|
|
|
lastRestoreTime: 0,
|
|
|
|
|
lastBackupFile: '',
|
|
|
|
|
lastBackupTime: 0
|
|
|
|
|
},
|
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
|
// Allows to fully customize uBO's assets, typically set through admin
|
|
|
|
|
// settings. The content of 'assets.json' will also tell which filter
|
|
|
|
|
// lists to enable by default when uBO is first installed.
|
|
|
|
|
assetsBootstrapLocation: 'assets/assets.json',
|
2014-07-25 22:12:20 +02:00
|
|
|
|
|
2017-01-18 19:17:47 +01:00
|
|
|
|
userFiltersPath: 'user-filters',
|
|
|
|
|
pslAssetKey: 'public_suffix_list.dat',
|
|
|
|
|
|
|
|
|
|
availableFilterLists: {},
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
2015-02-13 18:10:10 +01:00
|
|
|
|
selfieAfter: 23 * oneMinute,
|
2014-09-08 23:46:58 +02:00
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
pageStores: {},
|
2015-05-18 14:12:35 +02:00
|
|
|
|
pageStoresToken: 0,
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
2014-10-17 21:44:19 +02:00
|
|
|
|
storageQuota: vAPI.storage.QUOTA_BYTES,
|
2014-06-24 00:42:43 +02:00
|
|
|
|
storageUsed: 0,
|
|
|
|
|
|
2014-09-08 23:46:58 +02:00
|
|
|
|
noopFunc: function(){},
|
|
|
|
|
|
|
|
|
|
apiErrorCount: 0,
|
2015-09-10 19:46:18 +02:00
|
|
|
|
mouseX: -1,
|
|
|
|
|
mouseY: -1,
|
|
|
|
|
mouseURL: '',
|
2015-03-20 16:39:20 +01:00
|
|
|
|
epickerTarget: '',
|
|
|
|
|
epickerEprom: null,
|
|
|
|
|
|
2015-05-25 00:50:09 +02:00
|
|
|
|
scriptlets: {
|
|
|
|
|
},
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
// so that I don't have to care for last comma
|
|
|
|
|
dummy: 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|