Hi all,
I am working on a web extension that uses functionality from a remote source (that I own). My plan is to include an iframe in the plugin’s popover screen, and the src attribute would be a URL to a website that I own. For example:
<iframe
width="430"
height="410"
src="https://www.mywebsite.com"
/>
I was wondering if this would be acceptable for the reviewers? I noticed that it’s been discouraged to use remote scripts because the code could be changed without notice. https://extensionworkshop.com/documentation/develop/build-a-secure-extension/
However, if I owned the source of the website, I would know when the changes would occur. Also, since my users expect my extension to have a consistent user experience with the website, users would not be surprised by changes.
Thank you in advance!