An open API service indexing awesome lists of open source software.

https://github.com/trevorwang/chromewebviewapp

Web Site Chrome App Generator
https://github.com/trevorwang/chromewebviewapp

Last synced: about 1 month ago
JSON representation

Web Site Chrome App Generator

Awesome Lists containing this project

README

        

# Web Site Chrome App Generator

## How to use this project to build a new chrome App

1. Download this source code
2. Change the app `name` and `version` in `src/manifest.json`

```
{
"manifest_version": 2,
"name": "example",
"version": "2.1",
"minimum_chrome_version": "23",
"icons": {
"16": "image/icon_16.png",
"128": "image/icon_128.png"
},
"app": {
"background": {
"scripts": ["js/background.js"]
}
},
"permissions": [
"webview"
]
}
```

3. Replace the app icon with yours in the image folder
4. Set your web site info in `src/html/index.html`

```

```

5. Package your app

[Chrome Official Tutorial](https://developer.chrome.com/extensions/packaging)