Skip to content

Commit

Permalink
fix(ext): http permission
Browse files Browse the repository at this point in the history
  • Loading branch information
LarchLiu committed May 6, 2023
1 parent 3606974 commit 80c7d6f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/chrome-extension/src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"storage",
"scripting"
],
"host_permissions": ["https://*/*"],
"host_permissions": ["https://*/*", "http://*/*"],
"content_scripts": [
{
"run_at": "document_end",
"js": ["/contentScript/index.js"],
"matches": [
"https://*/*"
"https://*/*", "http://*/*"
]
}
],
Expand All @@ -38,7 +38,7 @@
"web_accessible_resources": [
{
"resources": ["contentScript/style.css"],
"matches": ["https://*/*"],
"matches": ["https://*/*", "http://*/*"],
"use_dynamic_url": true
}
]
Expand Down

0 comments on commit 80c7d6f

Please sign in to comment.