从 chrome 扩展程序访问 iframe 时出错,content_security_policy 错误
Error while accessing iframe from chorme extension, content_security_policy error
我正在尝试从 chrome 插件访问 Iframe 并出现以下错误。
Refused to frame 'https://mysite.co/' because an ancestor violates the following Content Security Policy directive: "frame-ancestors *".
我已经在我的 menifest.json 文件中添加了下面这行,但它不起作用。
"content_security_policy": "script-src 'self' https://mysite.co/"
请指导。
我找到了解决方案,我必须为 iframe 添加 child-src
,如下所示。
"content_security_policy": "script-src 'self' https://mysite.co; child-src https://mysite.co; object-src 'self'"
我正在尝试从 chrome 插件访问 Iframe 并出现以下错误。
Refused to frame 'https://mysite.co/' because an ancestor violates the following Content Security Policy directive: "frame-ancestors *".
我已经在我的 menifest.json 文件中添加了下面这行,但它不起作用。
"content_security_policy": "script-src 'self' https://mysite.co/"
请指导。
我找到了解决方案,我必须为 iframe 添加 child-src
,如下所示。
"content_security_policy": "script-src 'self' https://mysite.co; child-src https://mysite.co; object-src 'self'"