gpt4 book ai didi

javascript - window.open 在 background.js 中的 firefox 扩展?

转载 作者:行者123 更新时间:2023-11-30 14:45:34 24 4
gpt4 key购买 nike

我正在将一个可用的 chrome 扩展程序转换为 firefox 扩展程序。在扩展中,它调用了 background.js 中的 window.open()。但是,它在我的 firefox 版本中不工作,我已经测试过其他一切工作正常,只是不是 window.open'ing。

我在网上看到这可能是由于安全问题造成的?如何调整安全设置使其能够运行,以及如何通知用户?

list .json

{
"manifest_version": 2,
"name": "Instagram Liker",
"description": "Instagram Liker",
"version": "1",
"icons": {
"16": "icon16.png",
"48": "icon48.png",
"128": "icon128.png"
},
"content_scripts": [
{
"matches": [
"<all_urls>"
],
"js": [
"js/custom.js"
]
}
],
"background": {
"scripts": [
"js/background.js"
]
},
"browser_action": {
"default_popup": "popup.html"
}

window.open 只是在 background.js 中的函数中被调用,我认为我不需要发布该代码。

最佳答案

我遇到了完全一样的问题,解决方法是不使用

window.open("yourUrl")

而是使用仅为浏览器扩展提供的方法

browser.windows.create({url: ""yourUrl""});

使用此解决方案,您可以确保您的事件页面不会被任何弹出窗口拦截器拦截。

关于javascript - window.open 在 background.js 中的 firefox 扩展?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48982711/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com