Reputation: 33
In Chrome, one can make an extension cross-origin isolated by adding the following to manifest.json
:
{
...
"cross_origin_embedder_policy": {
"value": "require-corp"
},
"cross_origin_opener_policy": {
"value": "same-origin"
},
...
}
However, this is not supported on Firefox. I need to use SharedArrayBuffer
, so I need cross-origin isolation. How do I make an extension cross-origin isolated on Firefox?
Upvotes: 3
Views: 175
Reputation: 51
Unfortunately, as of September 2024, your only option is to wait or to try contributing to Firefox.
Relevant bugs on Bugzilla: Bug 1674383, Bug 1673477, Bug 1750654
Upvotes: 0