Is it possible to embed a web browser into a django web application? I want to avoid users from being directed away from the app (ie new tabs, windows) when possible. iFrames would be perfect but because of CORS restrictions, won't work for most sites.
I imagine that an embedded browser would circumvent this issue, and given that I can secure the browser from clickjacking etc, would be a fine alternative.
I am open to any other ideas for showing third-party content in a web app too! Thanks in advance!