diff --git a/web/packages/extension/manifest.json5 b/web/packages/extension/manifest.json5 index f82032b79b49..8653e2658bc0 100644 --- a/web/packages/extension/manifest.json5 +++ b/web/packages/extension/manifest.json5 @@ -14,15 +14,15 @@ { "matches": [""], "exclude_matches": [ - "https://sso.godaddy.com/*", - "https://authentication.td.com/*", - "https://*.twitch.tv/*", - "https://www.tuxedocomputers.com/*", - "https://*.taobao.com/*", - "https://*.time4learning.com/*", - "https://*.edgenuity.com/*", - "https://www.chewy.com/*", - "https://*.duosecurity.com/*", + "https://sso.godaddy.com/*", // See https://github.com/ruffle-rs/ruffle/pull/7146 + "https://authentication.td.com/*", // See https://github.com/ruffle-rs/ruffle/issues/2158 + "https://*.twitch.tv/*", // See https://github.com/ruffle-rs/ruffle/pull/8150 + "https://www.tuxedocomputers.com/*", // See https://github.com/ruffle-rs/ruffle/issues/11906 + "https://*.taobao.com/*", // See https://github.com/ruffle-rs/ruffle/pull/12650 + "https://*.time4learning.com/*", // See https://github.com/ruffle-rs/ruffle/pull/16186 + "https://*.edgenuity.com/*", // See https://github.com/ruffle-rs/ruffle/pull/16186 + "https://www.chewy.com/*", // See https://github.com/ruffle-rs/ruffle/issues/18265 + "https://*.duosecurity.com/*", // See https://github.com/ruffle-rs/ruffle/pull/18299 ], "js": ["dist/content.js"], "all_frames": true, diff --git a/web/packages/extension/src/background.ts b/web/packages/extension/src/background.ts index f0e77e380593..5fe6e86e81a9 100644 --- a/web/packages/extension/src/background.ts +++ b/web/packages/extension/src/background.ts @@ -182,15 +182,15 @@ async function enable() { persistAcrossSessions: true, matches: [""], excludeMatches: [ - "https://sso.godaddy.com/*", - "https://authentication.td.com/*", - "https://*.twitch.tv/*", - "https://www.tuxedocomputers.com/*", - "https://*.taobao.com/*", - "https://*.time4learning.com/*", - "https://*.edgenuity.com/*", - "https://www.chewy.com/*", - "https://*.duosecurity.com/*", + "https://sso.godaddy.com/*", // See https://github.com/ruffle-rs/ruffle/pull/7146 + "https://authentication.td.com/*", // See https://github.com/ruffle-rs/ruffle/issues/2158 + "https://*.twitch.tv/*", // See https://github.com/ruffle-rs/ruffle/pull/8150 + "https://www.tuxedocomputers.com/*", // See https://github.com/ruffle-rs/ruffle/issues/11906 + "https://*.taobao.com/*", // See https://github.com/ruffle-rs/ruffle/pull/12650 + "https://*.time4learning.com/*", // See https://github.com/ruffle-rs/ruffle/pull/16186 + "https://*.edgenuity.com/*", // See https://github.com/ruffle-rs/ruffle/pull/16186 + "https://www.chewy.com/*", // See https://github.com/ruffle-rs/ruffle/issues/18265 + "https://*.duosecurity.com/*", // See https://github.com/ruffle-rs/ruffle/pull/18299 ], runAt: "document_start", allFrames: true,