Hello,
I’m trying to develop a UXP plugin for Premiere Pro, and I would like to display an external website directly inside my panel.
In the old CEP extensions, this was easy to achieve using an <iframe> in the HTML, but as far as I know <iframe> is not supported in UXP.
I have read that <webview> might be the correct way to load a website in UXP, but I’m not sure if this is officially supported, and I couldn’t find clear documentation or examples.
What I want to achieve is very simple:
-
Just show the full webpage (e.g.,
https://example.com) inside my plugin panel. -
I don’t need deep integration or API communication, only display.
Could anyone confirm:
-
Is it possible to embed an external site (like
https://example.com) in a UXP panel? -
If yes, what is the recommended or supported way to do it?
-
Are there any restrictions (HTTPS only, CSP, etc.) I should be aware of?
Thanks in advance!