Skip to content

Commit

Permalink
core: fix host permission patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
danny0838 committed Jul 18, 2024
1 parent 6f9f1a7 commit 4a3bd60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/manifest-firefox.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@
"webRequest",
"webRequestBlocking",
"storage",
"http://*/",
"https://*/"
"http://*/*",
"https://*/*"
],

"optional_permissions": [
Expand Down
5 changes: 3 additions & 2 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@
"webRequest",
"webRequestBlocking",
"storage",
"http://*/",
"https://*/"
"http://*/*",
"https://*/*",
"file:///*"
],

"optional_permissions": [
Expand Down

0 comments on commit 4a3bd60

Please sign in to comment.