From 47680c775d198e250c55c800da6b1cdde9b7df10 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Sat, 18 Dec 2021 12:24:55 -0500 Subject: [PATCH] Limit force-reload at launch to https-based pages Related commit: - https://github.com/gorhill/uBlock/commit/a0a9497b4aca86727b314d8fc31ad345dad08ac8 --- src/js/traffic.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/js/traffic.js b/src/js/traffic.js index 1999e839f..b9110cf5b 100644 --- a/src/js/traffic.js +++ b/src/js/traffic.js @@ -1155,6 +1155,7 @@ const webRequest = { ) { const tabs = await vAPI.tabs.query({ active: true, + url: [ 'https://*/*', 'http://*/*' ], windowType: 'normal', }); for ( const tab of tabs ) {