我正在创建一个firefox插件。我在页面上动态追加iframe
。我正在关注this网址。但由于未定义的许可,我无法获得#document property
。
我还在package.json
文件中设置了跨域权限,但我的iframe源页面位于同一个域中。
"permissions": {
"unsafe-content-script": true,
"private-browsing": true,
"cross-domain-content": ["//sampleaddon/data/PopupTab.html"]
},
此处PopupTab.html
是我的iframe的源页面。
如何访问iframe的#document属性并更新其内容?
每次我收到错误' Permission denied to access document property
'