diff --git a/manifest/manifest.json b/manifest/manifest.json index 6c8c99f8..7f138b92 100644 --- a/manifest/manifest.json +++ b/manifest/manifest.json @@ -17,7 +17,8 @@ "permissions": [ "storage", "scripting", - "unlimitedStorage" + "unlimitedStorage", + "clipboardWrite" ], "options_ui": { "page": "options/options.html", diff --git a/src/content.ts b/src/content.ts index cc2edbc0..a83196fb 100644 --- a/src/content.ts +++ b/src/content.ts @@ -2205,6 +2205,7 @@ function openInfoMenu() { popup.id = "sponsorBlockPopupContainer"; const frame = document.createElement("iframe"); + frame.allow = "clipboard-write"; frame.width = "374"; frame.height = "500"; frame.style.borderRadius = "12px";