I'm seeing some issues with an older Chrome extension I made back in 2017. Upon attempting to load it I'm getting the "(URL) refused to connect" and this in the console:
Refused to display 'https://page' in a frame because it set 'X-Frame-Options' to 'deny'.
and
crbug/1173575, non-JS module files deprecated. (anonymous) @ (index):6774
I've seen some things around iframe and allowing that via some basic code but I'm a bit of a rookie here. Here's the code for the extension with the .html file:
<html>
<body>
<iframe src="https://page.com" height="565" width="355"></iframe>
</body>
</html>
Then from the manifest.json:
{
"name": "Manager",
"version": "1.3",
"description": "Cool",
"manifest_version": 2,
"browser_action": {
"default_icon": "icon.png",
"popup": "popup.html",
"default_icon": "icon.png",
"default_title": "[https://page.com]",
"icons": {"16" : "icon.png",
"48" : "icon.png",
"128" : "icon.png"},
"default_popup": "popup.html"
}
}
Any ideas? I'd really appreciate any help!