标签:blog http io ar sp for on 文件 div
{
"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>

标签:blog http io ar sp for on 文件 div
原文地址:http://www.cnblogs.com/jianggest/p/ChromeAppSession1.html