mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
120 lines
3.7 KiB
JavaScript
120 lines
3.7 KiB
JavaScript
/*******************************************************************************
|
|
|
|
uBlock Origin Lite - a comprehensive, MV3-compliant content blocker
|
|
Copyright (C) 2022-present 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
|
|
*/
|
|
|
|
import { browser } from './ext.js';
|
|
import { getFilteringModeDetails } from './mode-manager.js';
|
|
|
|
/******************************************************************************/
|
|
|
|
let reverseMode = false;
|
|
|
|
/******************************************************************************/
|
|
|
|
function toggleToolbarIcon(tabId) {
|
|
if ( reverseMode ) {
|
|
enableToolbarIcon(tabId);
|
|
} else {
|
|
disableToolbarIcon(tabId);
|
|
}
|
|
}
|
|
|
|
function disableToolbarIcon(tabId) {
|
|
const details = {
|
|
path: {
|
|
'16': '/img/icon_16_off.png',
|
|
'32': '/img/icon_32_off.png',
|
|
'64': '/img/icon_64_off.png',
|
|
'128': '/img/icon_128_off.png',
|
|
}
|
|
};
|
|
if ( tabId !== undefined ) {
|
|
details.tabId = tabId;
|
|
}
|
|
browser.action.setIcon(details);
|
|
}
|
|
|
|
function enableToolbarIcon(tabId) {
|
|
const details = {
|
|
path: {
|
|
'16': '/img/icon_16.png',
|
|
'32': '/img/icon_32.png',
|
|
'64': '/img/icon_64.png',
|
|
'128': '/img/icon_128.png',
|
|
}
|
|
};
|
|
if ( tabId !== undefined ) {
|
|
details.tabId = tabId;
|
|
}
|
|
browser.action.setIcon(details);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
function toolbarIconListener(details) {
|
|
if ( details.frameId !== 0 ) { return; }
|
|
toggleToolbarIcon(details.tabId);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
// https://github.com/uBlockOrigin/uBOL-home/issues/198
|
|
// Ensure the toolbar icon reflects the no-filtering mode of "trusted sites"
|
|
|
|
export async function syncToolbarIcon(wakeup) {
|
|
const { webNavigation } = browser;
|
|
if ( typeof webNavigation !== 'object' ) { return; }
|
|
|
|
webNavigation.onCommitted.removeListener(toolbarIconListener);
|
|
|
|
const { none, basic, optimal, complete } = await getFilteringModeDetails();
|
|
const reverseModeAfter = none.delete('all-urls');
|
|
const toToggle = reverseModeAfter ?
|
|
new Set([ ...basic, ...optimal, ...complete ])
|
|
: none;
|
|
|
|
if ( reverseModeAfter !== reverseMode ) {
|
|
if ( reverseModeAfter ) {
|
|
disableToolbarIcon();
|
|
} else {
|
|
enableToolbarIcon();
|
|
}
|
|
reverseMode = reverseModeAfter;
|
|
}
|
|
|
|
if ( toToggle.size === 0 ) { return; }
|
|
|
|
webNavigation.onCommitted.addListener(toolbarIconListener, {
|
|
url: Array.from(toToggle).map(a => ({
|
|
originAndPathMatches: `^https?://([^.].*\\.)?${a.replaceAll('.', '\\.')}/`
|
|
})),
|
|
});
|
|
|
|
if ( wakeup === undefined ) { return; }
|
|
|
|
// If waking up, update icon for existing tabs
|
|
const tabs = await browser.tabs.query({
|
|
url: Array.from(toToggle).map(a => `*://*.${a}/*`)
|
|
}).catch(( ) => ([]));
|
|
|
|
for ( const tab of tabs ) {
|
|
toggleToolbarIcon(tab.id);
|
|
}
|
|
}
|