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
- Host: GitHub
- URL: https://github.com/trevorwang/chromewebviewapp
- Owner: trevorwang
- License: mit
- Created: 2016-01-04T13:04:23.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-15T10:55:09.000Z (about 9 years ago)
- Last Synced: 2025-01-29T19:32:13.090Z (3 months ago)
- Language: JavaScript
- Homepage:
- Size: 30.3 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)