试图制作Chrome应用程序(已打包)

时间:2014-02-04 17:25:50

标签: google-chrome google-chrome-app

所以我正在尝试创建一个打包的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>

1 个答案:

答案 0 :(得分:2)

找到答案,Chrome Apps基本上不允许运行任何内联脚本。所以你必须做的是创建单独的脚本文件并包含动作监听器。 link here

中的更多信息