Loading iframe in google-chrome extension (Error: Protocols must match)
Code in manifest.json: { "name": "Test", "version": "1.0", "manifest_version": 2, "description": "Test", "browser_action": { "default_icon": "icon.png", "default_popup": "popup.html" }, "permissions": [ "notifications", "https://www.roblox.com" ], "background": { "scripts": ["background.js"] }, "content_security_policy": "script-src https://www.roblox.com 'self' ; object-src 'self'", "web_accessible_resources": [ "icon.png" ] } Code in background.js: var iframe = document.createElement("iframe") iframe.src = "http://www.roblox.com/User.aspx?ID=1" document.body.appendChild(iframe) I keep