1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-03 17:49:39 +02:00
Raymond Hill 2023-03-12 10:08:20 -04:00
parent b63ced24d4
commit 4b6ce5e402
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
4 changed files with 0 additions and 16 deletions

View File

@ -63,7 +63,6 @@ const hiddenSettingsDefault = {
cnameIgnoreRootDocument: true,
cnameMaxTTL: 120,
cnameReplayFullURL: false,
cnameUncloak: true,
cnameUncloakProxied: false,
consoleLogLevel: 'unset',
debugScriptlets: false,

View File

@ -52,7 +52,6 @@ let filteredLoggerEntryVoidedCount = 0;
let popupLoggerBox;
let popupLoggerTooltips;
let activeTabId = 0;
let filterAuthorMode = false;
let selectedTabId = 0;
let netInspectorPaused = false;
let cnameOfEnabled = false;
@ -1112,8 +1111,6 @@ const onLogBufferRead = function(response) {
allTabIdsToken = response.tabIdsToken;
}
filterAuthorMode = response.filterAuthorMode === true;
if ( activeTabIdChanged ) {
pageSelectorFromURLHash();
}

View File

@ -1605,7 +1605,6 @@ const getLoggerData = async function(details, activeTabId, callback) {
activeTabId,
colorBlind: µb.userSettings.colorBlindFriendly,
entries: logger.readAll(details.ownerId),
filterAuthorMode: µb.hiddenSettings.filterAuthorMode,
tabIdsToken: µb.pageStoresToken,
tooltips: µb.userSettings.tooltipsDisabled === false
};

View File

@ -238,17 +238,6 @@ const onUserSettingsReady = fetched => {
fetched.externalLists.trim().split(/[\n\r]+/);
}
// https://github.com/uBlockOrigin/uBlock-issues/issues/1513
// Transition nicely.
// TODO: remove when current version of uBO is well past 1.34.0.
if ( typeof µb.hiddenSettings.cnameUncloak === false ) {
fetched.cnameUncloakEnabled = false;
µb.hiddenSettings.cnameUncloak = true;
µb.saveHiddenSettings();
}
µb.hiddenSettingsDefault.cnameUncloak = undefined;
µb.hiddenSettings.cnameUncloak = undefined;
fromFetch(µb.userSettings, fetched);
if ( µb.privacySettingsSupported ) {