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

116 lines
3.0 KiB
JavaScript
Raw Normal View History

2020-02-27 13:45:29 +01:00
/**
* Entry Point
2020-06-30 18:41:58 +02:00
* Belongs to LocalCDN (since 2020-02-26)
* (Origin: Decentraleyes)
2020-02-27 13:45:29 +01:00
*
* @author Thomas Rientjes
* @since 2016-04-04
2020-06-30 18:41:58 +02:00
*
* @author nobody
* @since 2020-02-26
*
2020-02-27 13:45:29 +01:00
* @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 () {
chrome.storage.sync.get(settingDefaults, function (items) {
2020-02-27 13:45:29 +01:00
if (items === null) {
2020-08-30 18:35:08 +02:00
items = SettingDefaults; // Restore setting defaults.
2020-02-27 13:45:29 +01:00
}
if (items.disablePrefetch !== false) {
chrome.privacy.network.networkPredictionEnabled.set({
'value': false
});
}
stateManager.selectedIcon = items.selectedIcon;
wrappers.setIcon({
'path': stateManager.selectedIcon
}, 'Enabled');
2020-02-27 13:45:29 +01:00
chrome.storage.sync.set(items);
2020-02-27 13:45:29 +01:00
});
};
main._showReleaseNotes = function (details) {
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
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({
2020-07-14 17:54:25 +02:00
'url': chrome.extension.getURL('pages/welcome/welcome.html'),
'active': false
});
}
});
}
});
} else if (details.reason === chrome.runtime.OnInstalledReason.UPDATE) {
// 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) {
let mappingUpdate = items.lastMappingUpdate !== lastMappingUpdate;
if (mappingUpdate || !items.hideReleaseNotes) {
// Updated mappings.js
chrome.storage.sync.set({
[Setting.LAST_MAPPING_UPDATE]: lastMappingUpdate
}, function() {
if (!items.hideReleaseNotes) {
chrome.tabs.create({
'url': chrome.extension.getURL('pages/updates/updates.html?mappingupdate=' + mappingUpdate),
'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]
});