2014-06-24 00:42:43 +02:00
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
|
|
µBlock - a Chromium browser extension to block requests.
|
|
|
|
|
Copyright (C) 2014 Raymond Hill
|
|
|
|
|
|
|
|
|
|
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-01-21 14:59:23 +01:00
|
|
|
|
/* global vAPI */
|
2014-10-19 13:11:27 +02:00
|
|
|
|
/* exported µBlock */
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
var µBlock = (function() {
|
|
|
|
|
|
2015-01-21 01:39:13 +01:00
|
|
|
|
'use strict';
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-08-21 05:19:27 +02:00
|
|
|
|
var oneSecond = 1000;
|
|
|
|
|
var oneMinute = 60 * oneSecond;
|
|
|
|
|
var oneHour = 60 * oneMinute;
|
2014-10-19 13:11:27 +02:00
|
|
|
|
// var oneDay = 24 * oneHour;
|
2014-08-21 05:19:27 +02:00
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-09-26 03:21:55 +02:00
|
|
|
|
var defaultExternalLists = [
|
|
|
|
|
'! Examples:',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/antiadblockfilters.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/fb_annoyances_full.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/fb_annoyances_sidebar.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/fb_annoyances_newsfeed.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/yt_annoyances_full.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/yt_annoyances_comments.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/yt_annoyances_suggestions.txt',
|
|
|
|
|
'! https://easylist-downloads.adblockplus.org/yt_annoyances_other.txt'
|
|
|
|
|
].join('\n');
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
return {
|
|
|
|
|
userSettings: {
|
2015-01-06 17:44:06 +01:00
|
|
|
|
advancedUserEnabled: false,
|
2014-08-20 02:41:52 +02:00
|
|
|
|
autoUpdate: true,
|
2014-06-27 23:06:42 +02:00
|
|
|
|
collapseBlocked: true,
|
2014-10-04 20:50:50 +02:00
|
|
|
|
contextMenuEnabled: true,
|
2014-12-28 16:07:43 +01:00
|
|
|
|
dynamicFilteringString: '',
|
2014-10-06 20:02:44 +02:00
|
|
|
|
dynamicFilteringEnabled: false,
|
2014-09-30 21:55:18 +02:00
|
|
|
|
experimentalEnabled: false,
|
2014-09-26 03:21:55 +02:00
|
|
|
|
externalLists: defaultExternalLists,
|
2015-02-18 15:15:59 +01:00
|
|
|
|
firewallPaneMinimized: true,
|
2014-06-24 00:42:43 +02:00
|
|
|
|
parseAllABPHideFilters: true,
|
2014-06-27 23:06:42 +02:00
|
|
|
|
showIconBadge: true
|
2014-06-24 00:42:43 +02:00
|
|
|
|
},
|
2014-08-25 02:52:34 +02:00
|
|
|
|
|
|
|
|
|
// https://github.com/gorhill/uBlock/issues/180
|
|
|
|
|
// Whitelist directives need to be loaded once the PSL is available
|
|
|
|
|
netWhitelist: {},
|
|
|
|
|
netWhitelistModifyTime: 0,
|
2015-01-24 18:06:22 +01:00
|
|
|
|
netWhitelistDefault: [
|
|
|
|
|
'behind-the-scene',
|
|
|
|
|
'chrome-extension-scheme',
|
|
|
|
|
'chrome-scheme',
|
|
|
|
|
'opera-scheme',
|
|
|
|
|
''
|
|
|
|
|
].join('\n').trim(),
|
2014-08-25 02:52:34 +02:00
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
localSettings: {
|
|
|
|
|
blockedRequestCount: 0,
|
|
|
|
|
allowedRequestCount: 0
|
|
|
|
|
},
|
|
|
|
|
|
2015-02-24 00:31:29 +01:00
|
|
|
|
// read-only
|
|
|
|
|
systemSettings: {
|
2015-03-02 16:41:51 +01:00
|
|
|
|
compiledMagic: 'fkaywfqahncj',
|
2015-02-27 00:08:42 +01:00
|
|
|
|
selfieMagic: 'spqmeuaftfra'
|
2015-02-24 00:31:29 +01:00
|
|
|
|
},
|
|
|
|
|
|
2014-08-21 07:16:25 +02:00
|
|
|
|
// EasyList, EasyPrivacy and many others have an 4-day update period,
|
|
|
|
|
// as per list headers.
|
2015-02-13 18:10:10 +01:00
|
|
|
|
updateAssetsEvery: 97 * oneHour,
|
2014-11-16 03:21:13 +01:00
|
|
|
|
projectServerRoot: 'https://raw.githubusercontent.com/gorhill/uBlock/master/',
|
2014-06-25 03:46:37 +02:00
|
|
|
|
userFiltersPath: 'assets/user/filters.txt',
|
2014-09-08 23:46:58 +02:00
|
|
|
|
pslPath: 'assets/thirdparties/publicsuffix.org/list/effective_tld_names.dat',
|
2014-06-24 00:42:43 +02:00
|
|
|
|
|
2014-07-25 22:12:20 +02:00
|
|
|
|
// permanent lists
|
|
|
|
|
permanentLists: {
|
2014-06-24 00:42:43 +02:00
|
|
|
|
// User
|
2014-07-16 02:32:33 +02:00
|
|
|
|
'assets/user/filters.txt': {
|
|
|
|
|
group: 'default'
|
|
|
|
|
},
|
2014-06-27 08:06:50 +02:00
|
|
|
|
// uBlock
|
|
|
|
|
'assets/ublock/filters.txt': {
|
2014-07-16 02:32:33 +02:00
|
|
|
|
title: 'µBlock filters',
|
|
|
|
|
group: 'default'
|
2014-06-27 08:06:50 +02:00
|
|
|
|
},
|
2014-07-23 04:46:57 +02:00
|
|
|
|
'assets/ublock/privacy.txt': {
|
2014-10-02 22:45:26 +02:00
|
|
|
|
title: 'µBlock filters – Privacy',
|
2014-07-23 04:46:57 +02:00
|
|
|
|
group: 'default'
|
|
|
|
|
}
|
2014-07-25 22:12:20 +02:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
// current lists
|
|
|
|
|
remoteBlacklists: {
|
2014-07-23 04:46:57 +02:00
|
|
|
|
},
|
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: {},
|
|
|
|
|
|
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,
|
2014-09-28 20:38:17 +02:00
|
|
|
|
contextMenuTarget: '',
|
|
|
|
|
contextMenuClientX: -1,
|
|
|
|
|
contextMenuClientY: -1,
|
2014-09-08 23:46:58 +02:00
|
|
|
|
|
2014-06-24 00:42:43 +02:00
|
|
|
|
// so that I don't have to care for last comma
|
|
|
|
|
dummy: 0
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
|
|
})();
|
|
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
|