Skip to content

Commit

Permalink
fix: support sites with players inside iframe
Browse files Browse the repository at this point in the history
  • Loading branch information
vitalygashkov committed Jul 20, 2024
1 parent ef0e7e4 commit d0bd00a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ function getLicenseRequestHeaders(details) {
tabIDs[details.tabId].license_url === details.url &&
tabIDs[details.tabId].req_id === details.requestId
) {
console.log(details.url);
if (!tabIDs[details.tabId].license_request) tabIDs[details.tabId].license_request = [];
tabIDs[details.tabId].license_request.push({ license_headers: details.requestHeaders });
requestToClipboard(details.tabId);

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
{
"matches": ["*://*/*"],
"js": ["content-script.js"],
"all_frames": false,
"all_frames": true,
"run_at": "document_start"
}
],
Expand Down

0 comments on commit d0bd00a

Please sign in to comment.