chrome app的helloworld

参考
http://blog.csdn.net/rydiy/article/details/8566061

文件夹里建三个文件
popup.html
<html>  
  <head>  
    <title>haoning</title>  
  </head>  
  <body>  
  helloworld  
  </body>  
</html>

manifest.json
{
"manifest_version":2,

"name":"haoning",
"version":"1.0",
"description":"haoning helloworld",

"browser_action":{
    "default_icon":"icon.png",
    "default_popup":"popup.html"
}
}

随便找个图标
icon.png

chrome--->更多工具--->扩展程序--》加载正在开发的扩展程序
指定到这个文件夹即可
chrome app的helloworld_第1张图片
chrome app的helloworld_第2张图片

你可能感兴趣的:(chrome)