I created a popup in Chrome extension that works just fine.
where in the popup, user will click on a button and open a new tab and loads a index.html that comes with the extension package locally.
the index.html hv it's own .js files, css, etc.
however, when a button is clicked inside the index.html, with window.open("url"), chrome failed to open a new window/tab from that page.
error message:
Refused to display 'https://www.behance.net/' in a frame because it set 'X-Frame-Options' to 'DENY'.
what can i do the perform window.open() in a tab that is created by chrome extension?