mirror of
https://github.com/gorhill/uBlock.git
synced 2026-03-11 09:04:36 +00:00
68 lines
2.3 KiB
JavaScript
68 lines
2.3 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,
|
|
runtime,
|
|
} from './ext.js';
|
|
|
|
/******************************************************************************/
|
|
|
|
// https://developer.mozilla.org/docs/Mozilla/Add-ons/WebExtensions/manifest.json/host_permissions#requested_permissions_and_user_prompts
|
|
// "Users can grant or revoke host permissions on an ad hoc basis. Therefore,
|
|
// most browsers treat host_permissions as optional."
|
|
|
|
export async function hasBroadHostPermissions() {
|
|
return browser.permissions.getAll().then(permissions =>
|
|
permissions.origins.includes('<all_urls>') ||
|
|
permissions.origins.includes('*://*/*')
|
|
).catch(( ) => false);
|
|
}
|
|
|
|
/******************************************************************************/
|
|
|
|
export async function gotoURL(url, type) {
|
|
const pageURL = new URL(url, runtime.getURL('/'));
|
|
const tabs = await browser.tabs.query({
|
|
url: pageURL.href,
|
|
windowType: type !== 'popup' ? 'normal' : 'popup'
|
|
});
|
|
|
|
if ( Array.isArray(tabs) && tabs.length !== 0 ) {
|
|
const { windowId, id } = tabs[0];
|
|
return Promise.all([
|
|
browser.windows.update(windowId, { focused: true }),
|
|
browser.tabs.update(id, { active: true }),
|
|
]);
|
|
}
|
|
|
|
if ( type === 'popup' ) {
|
|
return browser.windows.create({
|
|
type: 'popup',
|
|
url: pageURL.href,
|
|
});
|
|
}
|
|
|
|
return browser.tabs.create({
|
|
active: true,
|
|
url: pageURL.href,
|
|
});
|
|
}
|