LocalCDN-Firefox-Chrome-Brave/core/main.js

136 lines
3.6 KiB
JavaScript
Raw Normal View History

2020-02-27 13:45:29 +01:00
/**
* Entry Point
* Belongs to Decentraleyes.
*
* @author Thomas Rientjes
* @since 2016-04-04
* @license MPL-2.0
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this file,
* You can obtain one at http://mozilla.org/MPL/2.0/.
*/
'use strict';
/**
* Main
*/
var main = {};
/**
* Private Methods
*/
main._initializeSettings = function () {
let settingDefaults = {
[Setting.XHR_TEST_DOMAIN]: Address.DECENTRALEYES,
[Setting.SHOW_ICON_BADGE]: true,
[Setting.BLOCK_MISSING]: false,
[Setting.DISABLE_PREFETCH]: true,
[Setting.ENFORCE_STAGING]: false,
[Setting.HIDE_RELEASE_NOTES]: false,
2020-02-27 13:45:29 +01:00
[Setting.STRIP_METADATA]: true,
2020-03-29 10:23:16 +02:00
[Setting.WHITELISTED_DOMAINS]: {},
[Setting.LOGGING]: false,
[Setting.DOMAINS_MANIPULATE_DOM]: {},
[Setting.NEGATE_HTML_FILTER_LIST]: false
2020-02-27 13:45:29 +01:00
};
chrome.storage.sync.get(settingDefaults, function (items) {
2020-02-27 13:45:29 +01:00
if (items === null) {
items = settingDefaults; // Restore setting defaults.
}
if (items.disablePrefetch !== false) {
chrome.privacy.network.networkPredictionEnabled.set({
'value': false
});
}
chrome.storage.sync.set(items);
2020-02-27 13:45:29 +01:00
});
};
main._showReleaseNotes = function (details) {
let location, updateAdBlockerRules, previousVersion;
2020-02-27 13:45:29 +01:00
location = chrome.extension.getURL('pages/welcome/welcome.html');
updateAdBlockerRules = chrome.extension.getURL('pages/updates/updates.html');
2020-02-27 13:45:29 +01:00
if (details.reason === chrome.runtime.OnInstalledReason.INSTALL) {
2020-02-27 13:45:29 +01:00
chrome.storage.sync.set({
[Setting.LAST_MAPPING_UPDATE]: lastMappingUpdate
}, function() {
2020-02-27 13:45:29 +01:00
previousVersion = details.previousVersion;
2020-02-27 13:45:29 +01:00
if (previousVersion && previousVersion.charAt(0) === '2') {
return; // Do not show release notes after minor updates.
}
2020-02-27 13:45:29 +01:00
if (details.temporary !== true) {
2020-02-27 13:45:29 +01:00
chrome.storage.sync.get([Setting.HIDE_RELEASE_NOTES], function (items) {
2020-02-27 13:45:29 +01:00
if (items.hideReleaseNotes !== true) {
chrome.tabs.create({
'url': location,
'active': false
});
}
});
}
});
} else if (details.reason === chrome.runtime.OnInstalledReason.UPDATE) {
let newValue = lastMappingUpdate;
let oldValue = "";
// If add-on update true, check last update of mappings.js
chrome.storage.sync.get([Setting.LAST_MAPPING_UPDATE, Setting.HIDE_RELEASE_NOTES], function (items) {
oldValue = items.lastMappingUpdate;
if (oldValue !== newValue) {
// Updated mappings.js
chrome.storage.sync.set({
[Setting.LAST_MAPPING_UPDATE]: newValue
}, function() {
if (!items.hideReleaseNotes) {
chrome.tabs.create({
'url': updateAdBlockerRules,
'active': false
});
}
});
} else {
// No mappings.js update
return;
}
});
2020-02-27 13:45:29 +01:00
}
};
/**
* Initializations
*/
chrome.runtime.onInstalled.addListener(main._showReleaseNotes);
main._initializeSettings();
wrappers.setBadgeBackgroundColor({
'color': [74, 130, 108, 255]
});
wrappers.setBadgeTextColor({
'color': [255, 255, 255, 255]
});