Skip to content

Commit

Permalink
Fix video content scripts being included in locally running website
Browse files Browse the repository at this point in the history
  • Loading branch information
killergerbah committed Apr 20, 2024
1 parent 55a4053 commit cd3e8ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions extension/src/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@
"content_scripts": [
{
"matches": ["<all_urls>"],
"exclude_globs": ["*://killergerbah.github.io/asbplayer*", "*://localhost/*"],
"exclude_globs": ["*://killergerbah.github.io/asbplayer*", "*://localhost:3000/*"],
"js": ["video.js"],
"css": ["video.css"],
"all_frames": true,
"run_at": "document_idle"
},
{
"matches": ["<all_urls>"],
"exclude_globs": ["*://killergerbah.github.io/asbplayer*", "*://localhost/*"],
"exclude_globs": ["*://killergerbah.github.io/asbplayer*", "*://localhost:3000/*"],
"js": ["page.js"],
"all_frames": true,
"run_at": "document_start"
Expand Down

0 comments on commit cd3e8ce

Please sign in to comment.