所以我正在尝试创建一个打包的Chrome应用程序,到目前为止我已经让应用程序正确安装并显示一些静态文本和图片,但是我不能为我的生活获取任何JavaScript到内部的工作window.html文件。我知道它们确实是Google提供的API,但似乎绝对没有任何正在运行的API。有没有其他人有这个问题或有没有人有答案制作一个做某事的应用程序?
萨姆
修改
的manifest.json
{
"name": "Test",
"description": "Test application",
"version": "0.1",
"app": {
"background": {
"scripts": ["background.js"]
}
},
"icons": {"128": "icon.png"},
"permissions": ["storage"]
}
window.html
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'>
function test(){
alert("Hello there!");
}
</script>
</head>
<body>
<table border ="0">
<tr>
<td><img border='0' src='icon.png'></td>
<td><b>Test</b></td>
</tr>
</table>
<button onclick='test();'>Store</button>
</body>
</html>