当前使用content_scripts在网址匹配时生成提醒,例如:
"content_scripts": [
{
"matches": ["https://www.google.co.uk/*"],
"js": ["alert.js"]
}
]
alert.js:
alert( 'Hello, world!' );
但是可以在manifest.json中强制打开我的default_open而不是生成警报吗?
"default_popup": "index.html"
答案 0 :(得分:0)
否则您无法以编程方式打开弹出窗口,并且由于安全问题,计划使其普遍可用已停顿。你可以在这里关注它的发展: