Skip to content

Commit

Permalink
add match_origin_as_fallback to manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
mnholtz committed Jul 26, 2024
1 parent ef44074 commit 36a717b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,14 @@
},
"content_scripts": [
{
"matches": ["*://*/*"],
"matches": ["<all_urls>"],
"exclude_matches": ["https://*.googleapis.com/*"],
"js": ["contentScript.js"],
"css": ["contentScript.css"],
"all_frames": true,
"match_about_blank": true,
"run_at": "document_idle"
"run_at": "document_idle",
"match_origin_as_fallback": true
},
{
"matches": ["https://*/*"],
Expand Down Expand Up @@ -85,7 +86,7 @@
"img/*",
"*.css"
],
"matches": ["*://*/*"]
"matches": ["<all_urls>"]
}
],
"action": {
Expand Down

0 comments on commit 36a717b

Please sign in to comment.