Skip to content

Commit 89618ab

Browse files
author
Andy
committed
feat: Baize no longer block requests from browser extensions
1 parent 1bcfe18 commit 89618ab

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

src/background/heuristics.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ export async function initialize() {
4747
if (urlparse.getRootDomain() == "cloudopt.net") {
4848
return
4949
}
50+
if(details.initiator && details.initiator.startsWith("chrome-extension://")){
51+
return
52+
}
5053
let requestThirdParty = 1
5154
if (details.initiator && new UrlParse(details.initiator).getDomain() != urlparse.getDomain()) {
5255
requestThirdParty = 3

0 commit comments

Comments
 (0)