我有一个要在移动设备(Kiwi浏览器)上测试的Chrome扩展程序。以下代码段在台式机上正常运行,但在移动设备上无法正常运行:
background.js
chrome.runtime.onInstalled.addListener(function(details) {
if (details.reason == 'install') {
let install_window = window.open('https://www.google.com', '_blank');
install_window.opener = null;
}});
manifest.json
{
"app": {
"background": {
"scripts": ["background.js"]
}
},
"manifest_version": 2,
"name": "My App",
"version": "0"
}
台式机和手机之间有什么区别?
答案 0 :(得分:0)
来自@wOxxOm中的注释:
使用诸如chrome.tabs.create之类的扩展API代替window.open