如何创建ChromeApp
{ "manifest_version": 2, "name": "Codelab", "version": "1", "icons": { "128": "icon_128.png" }, "permissions": [], "app": { "background": { "scripts": ["background.js"] } }, "minimum_chrome_version": "28"}
/** * Listens for the app launching then creates the window * * @see http://developer.chrome.com/apps/app.window.html */ chrome.app.runtime.onLaunched.addListener(function() { chrome.app.window.create(‘index.html‘, { id: ‘main‘, bounds: { width: 620, height: 500 } });});
<!DOCTYPE html><html><head> <meta charset="utf-8"></head><body> <h1>Hello, let‘s code!</h1></body></html>
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。