我的 Chrome 打包应用程序有 2 个 JavaScript 文件。
1. background.js 是 manifest.json 调用的主要 JavaScript 文件
var foo = 'sss';
function bar(a,b) {
return a+b;
}
chrome.app.runtime.onLaunched.addListener(function() {
chrome.app.window.create('index.html', {
bounds: {
width: 500,
height: 300
}
});
});
2. app.js 是 index.html 的控制器
问题:我可以从app.js中的background.js调用变量“foo”或函数“bar”吗?
PS。或者有任何解决方案来在页面之间转移价值,例如chrome.storage?