mirror of
https://github.com/gorhill/uBlock.git
synced 2024-11-06 19:02:30 +01:00
Do not inject scriptlets on navigation events in Firefox
Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/2343
This commit is contained in:
parent
df1542e382
commit
4863f3093e
@ -916,6 +916,10 @@ vAPI.Tabs = class extends vAPI.Tabs {
|
||||
// For non-network URIs, defer scriptlet injection to content script. The
|
||||
// reason for this is that we need the effective URL and this information
|
||||
// is not available at this point.
|
||||
//
|
||||
// https://github.com/uBlockOrigin/uBlock-issues/issues/2343
|
||||
// uBO's isolated world in Firefox just does not work as expected at
|
||||
// point, so we have to wait before injecting scriptlets.
|
||||
onNavigation(details) {
|
||||
super.onNavigation(details);
|
||||
const { frameId, tabId, url } = details;
|
||||
@ -929,7 +933,10 @@ vAPI.Tabs = class extends vAPI.Tabs {
|
||||
const pageStore = µb.pageStoreFromTabId(tabId);
|
||||
if ( pageStore === null ) { return; }
|
||||
pageStore.setFrameURL(details);
|
||||
if ( pageStore.getNetFilteringSwitch() ) {
|
||||
if (
|
||||
vAPI.webextFlavor.soup.has('firefox') === false &&
|
||||
pageStore.getNetFilteringSwitch()
|
||||
) {
|
||||
scriptletFilteringEngine.injectNow(details);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user