创建Chrome App

1.文件结构



创建Chrome App_第1张图片

内容如下:

manifest.json

{

  "name": "Hello World!",

  "description": "My first Chrome App.",

  "version": "0.1",

  "manifest_version": 2,

  "app": {

    "background": {

      "scripts": ["background.js"]

    }

  },

  "icons": { "16": "calculator-16.png", "128": "calculator-128.png" }

}


background.js

chrome.app.runtime.onLaunched.addListener(function() {

  chrome.app.window.create('window.html', {

    'outerBounds': {

      'width': 400,

      'height': 500

    }

  });

});

window.html

Hello World!


manifest.json 是入口文件,引出了background.js, background.js引出了window.html


2.配置启动


创建Chrome App_第2张图片


创建Chrome App_第3张图片

或者使用命令行:

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --load-and-launch-app=F:\live-dev\chrome-app\

"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app-id=bbcfgdgmbdldogmldhdnehahjencpgbi

3.API参看


https://developer.chrome.com/apps/api_index


创建Chrome App_第4张图片



4.如何调试background.js

参看 https://stackoverflow.com/questions/10257301/where-to-read-console-messages-from-background-js-in-a-chrome-extension

打开 chrome://extensions/


创建Chrome App_第5张图片

做完这三步之后 在console就能看到

你可能感兴趣的:(创建Chrome App)