1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-18 17:02:27 +02:00
uBlock/js/background.js

104 lines
3.0 KiB
JavaScript
Raw Normal View History

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
*/
/* global chrome */
/******************************************************************************/
var µBlock = (function() {
/******************************************************************************/
2014-08-21 05:19:27 +02:00
var oneSecond = 1000;
var oneMinute = 60 * oneSecond;
var oneHour = 60 * oneMinute;
var oneDay = 24 * oneHour;
/******************************************************************************/
2014-06-24 00:42:43 +02:00
return {
manifest: chrome.runtime.getManifest(),
userSettings: {
autoUpdate: true,
2014-06-27 23:06:42 +02:00
collapseBlocked: true,
2014-07-25 22:12:20 +02:00
externalLists: '',
2014-07-02 18:02:29 +02:00
logBlockedRequests: false,
2014-07-07 01:14:32 +02:00
logAllowedRequests: false,
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
},
// https://github.com/gorhill/uBlock/issues/180
// Whitelist directives need to be loaded once the PSL is available
netExceptionList: {}, // TODO: remove once all users are up to date
netWhitelist: {},
netWhitelistModifyTime: 0,
2014-06-24 00:42:43 +02:00
localSettings: {
blockedRequestCount: 0,
allowedRequestCount: 0
},
2014-08-21 07:16:25 +02:00
// EasyList, EasyPrivacy and many others have an 4-day update period,
// as per list headers.
2014-08-21 05:19:27 +02:00
updateAssetsEvery: 75 * oneHour + 23 * oneMinute + 53 * oneSecond + 605,
2014-07-21 01:52:32 +02:00
projectServerRoot: 'https://raw.githubusercontent.com/gorhill/uBlock/master/',
2014-06-25 03:46:37 +02:00
userFiltersPath: 'assets/user/filters.txt',
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
'assets/user/filters.txt': {
group: 'default'
},
2014-06-27 08:06:50 +02:00
// uBlock
'assets/ublock/filters.txt': {
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': {
off: true,
title: 'µBlock filters - Privacy',
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
pageStores: {},
storageQuota: chrome.storage.local.QUOTA_BYTES,
storageUsed: 0,
// so that I don't have to care for last comma
dummy: 0
};
/******************************************************************************/
})();
/******************************************************************************/