fix(extensions): implement missing web_request hooks (#22655)
Co-authored-by: Jeremy Apthorp <nornagon@nornagon.net> Co-authored-by: samuelmaddock <samuel.maddock@gmail.com>
This commit is contained in:
parent
8f1bc338e5
commit
bf24759354
9 changed files with 216 additions and 25 deletions
|
@ -0,0 +1,9 @@
|
|||
/* global chrome */
|
||||
|
||||
chrome.webRequest.onBeforeRequest.addListener(
|
||||
(details) => {
|
||||
return { cancel: true };
|
||||
},
|
||||
{ urls: ['*://127.0.0.1:*'] },
|
||||
['blocking']
|
||||
);
|
Loading…
Add table
Add a link
Reference in a new issue