xiMatrix

filter net requests according to source, destination and type  https://addons.mozilla.org/firefox/addon/ximatrix/
git clone https://git.ce9e.org/xiMatrix.git

commit
19a8325b7258b5af5efeeb05a0bd8c8db1b8eb66
parent
6522036397b1dbe091f6e96a8900e60794e189f1
Author
Tobias Bengfort <tobias.bengfort@posteo.de>
Date
2023-12-08 20:03
lint

Diffstat

M src/bg.js 2 +-

1 files changed, 1 insertions, 1 deletions


diff --git a/src/bg.js b/src/bg.js

@@ -183,7 +183,7 @@ browser.webRequest.onBeforeSendHeaders.addListener(async details => {
  183   183         promises.push(pushRequest(details.tabId, hostname, 'cookie'));
  184   184     }
  185   185 
  186    -1     var [rules, ...rest] = await Promise.all(promises);
   -1   186     var [rules, ..._rest] = await Promise.all(promises);
  187   187     if (
  188   188         details.type !== 'main_frame'
  189   189         && !shared.shouldAllow(rules, context, hostname, type)