2014-09-28 18:05:46 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
|
2016-01-17 19:30:43 +01:00
|
|
|
uBlock Origin - a browser extension to block requests.
|
2018-09-07 16:42:59 +02:00
|
|
|
Copyright (C) 2014-present Raymond Hill
|
2014-09-28 18:05:46 +02:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
|
2017-05-27 17:51:24 +02:00
|
|
|
'use strict';
|
|
|
|
|
2014-09-28 18:05:46 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
µBlock.contextMenu = (( ) => {
|
2014-09-28 18:05:46 +02:00
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2017-07-24 17:35:22 +02:00
|
|
|
if ( vAPI.contextMenu === undefined ) {
|
2017-07-25 01:25:49 +02:00
|
|
|
return {
|
|
|
|
update: function() {}
|
|
|
|
};
|
2017-07-24 17:35:22 +02:00
|
|
|
}
|
|
|
|
|
2014-09-28 18:05:46 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
const onBlockElement = function(details, tab) {
|
2018-09-07 16:42:59 +02:00
|
|
|
if ( tab === undefined ) { return; }
|
|
|
|
if ( /^https?:\/\//.test(tab.url) === false ) { return; }
|
|
|
|
let tagName = details.tagName || '';
|
|
|
|
let src = details.frameUrl || details.srcUrl || details.linkUrl || '';
|
2014-10-17 21:44:19 +02:00
|
|
|
|
2014-12-28 21:26:06 +01:00
|
|
|
if ( !tagName ) {
|
2014-10-17 21:44:19 +02:00
|
|
|
if ( typeof details.frameUrl === 'string' ) {
|
|
|
|
tagName = 'iframe';
|
|
|
|
} else if ( typeof details.srcUrl === 'string' ) {
|
|
|
|
if ( details.mediaType === 'image' ) {
|
|
|
|
tagName = 'img';
|
|
|
|
} else if ( details.mediaType === 'video' ) {
|
|
|
|
tagName = 'video';
|
|
|
|
} else if ( details.mediaType === 'audio' ) {
|
|
|
|
tagName = 'audio';
|
|
|
|
}
|
|
|
|
} else if ( typeof details.linkUrl === 'string' ) {
|
|
|
|
tagName = 'a';
|
2014-09-28 18:05:46 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-18 18:17:45 +02:00
|
|
|
µBlock.epickerArgs.mouse = true;
|
2018-09-07 16:42:59 +02:00
|
|
|
µBlock.elementPickerExec(tab.id, tagName + '\t' + src);
|
2014-09-28 18:05:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
const onTemporarilyAllowLargeMediaElements = function(details, tab) {
|
2017-09-16 13:59:56 +02:00
|
|
|
if ( tab === undefined ) { return; }
|
2018-09-07 16:42:59 +02:00
|
|
|
let pageStore = µBlock.pageStoreFromTabId(tab.id);
|
2017-09-16 13:59:56 +02:00
|
|
|
if ( pageStore === null ) { return; }
|
|
|
|
pageStore.temporarilyAllowLargeMediaElements(true);
|
2016-01-17 19:30:43 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
const onEntryClicked = function(details, tab) {
|
2016-01-17 19:30:43 +01:00
|
|
|
if ( details.menuItemId === 'uBlock0-blockElement' ) {
|
|
|
|
return onBlockElement(details, tab);
|
|
|
|
}
|
|
|
|
if ( details.menuItemId === 'uBlock0-temporarilyAllowLargeMediaElements' ) {
|
|
|
|
return onTemporarilyAllowLargeMediaElements(details, tab);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
const menuEntries = [
|
2016-01-17 19:30:43 +01:00
|
|
|
{
|
|
|
|
id: 'uBlock0-blockElement',
|
2014-10-17 21:44:19 +02:00
|
|
|
title: vAPI.i18n('pickerContextMenuEntry'),
|
2016-01-17 19:30:43 +01:00
|
|
|
contexts: ['all'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
id: 'uBlock0-temporarilyAllowLargeMediaElements',
|
|
|
|
title: vAPI.i18n('contextMenuTemporarilyAllowLargeMediaElements'),
|
|
|
|
contexts: ['all'],
|
|
|
|
}
|
|
|
|
];
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
let currentBits = 0;
|
|
|
|
|
|
|
|
const update = function(tabId = undefined) {
|
2018-09-07 16:42:59 +02:00
|
|
|
let newBits = 0;
|
2019-07-02 15:43:26 +02:00
|
|
|
if ( µBlock.userSettings.contextMenuEnabled && tabId !== undefined ) {
|
2018-09-07 16:42:59 +02:00
|
|
|
let pageStore = µBlock.pageStoreFromTabId(tabId);
|
|
|
|
if ( pageStore && pageStore.getNetFilteringSwitch() ) {
|
2016-01-17 19:30:43 +01:00
|
|
|
newBits |= 0x01;
|
|
|
|
if ( pageStore.largeMediaCount !== 0 ) {
|
|
|
|
newBits |= 0x02;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-09-07 16:42:59 +02:00
|
|
|
if ( newBits === currentBits ) { return; }
|
2016-01-17 19:30:43 +01:00
|
|
|
currentBits = newBits;
|
2018-09-07 16:42:59 +02:00
|
|
|
let usedEntries = [];
|
2016-01-17 19:30:43 +01:00
|
|
|
if ( newBits & 0x01 ) {
|
|
|
|
usedEntries.push(menuEntries[0]);
|
|
|
|
}
|
|
|
|
if ( newBits & 0x02 ) {
|
|
|
|
usedEntries.push(menuEntries[1]);
|
2014-09-28 18:05:46 +02:00
|
|
|
}
|
2016-01-17 19:30:43 +01:00
|
|
|
vAPI.contextMenu.setEntries(usedEntries, onEntryClicked);
|
2014-09-28 18:05:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/******************************************************************************/
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
// https://github.com/uBlockOrigin/uBlock-issues/issues/151
|
|
|
|
// For unknown reasons, the currently active tab will not be successfully
|
|
|
|
// looked up after closing a window.
|
|
|
|
|
2019-09-16 15:45:17 +02:00
|
|
|
vAPI.contextMenu.onMustUpdate = async function(tabId = undefined) {
|
2019-07-02 15:43:26 +02:00
|
|
|
if ( µBlock.userSettings.contextMenuEnabled === false ) {
|
|
|
|
return update();
|
|
|
|
}
|
|
|
|
if ( tabId !== undefined ) {
|
|
|
|
return update(tabId);
|
2016-01-17 19:30:43 +01:00
|
|
|
}
|
2019-09-16 15:45:17 +02:00
|
|
|
const tab = await vAPI.tabs.getCurrent();
|
|
|
|
if ( tab instanceof Object === false ) { return; }
|
|
|
|
update(tab.id);
|
2014-09-28 18:05:46 +02:00
|
|
|
};
|
|
|
|
|
2019-07-02 15:43:26 +02:00
|
|
|
return { update: vAPI.contextMenu.onMustUpdate };
|
|
|
|
|
2014-09-28 18:05:46 +02:00
|
|
|
/******************************************************************************/
|
|
|
|
|
|
|
|
})();
|