Add chrome app manifest.
To test, check: http://developer.chrome.com/apps/first_app.html
This commit is contained in:
parent
9e88f7775e
commit
5cd2fa19fa
1 changed files with 25 additions and 0 deletions
25
manifest.json
Normal file
25
manifest.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"name": "Weechat",
|
||||
"description": "WeeChat Web frontend",
|
||||
"version": "0.0.0.1",
|
||||
"manifest_version": 2,
|
||||
"icons": {
|
||||
"32": "img/favicon.png",
|
||||
"128": "img/weechat_logo_128x128.png"
|
||||
},
|
||||
"app": {
|
||||
"urls": [
|
||||
"http://torhve.github.io/glowing-bear/"
|
||||
],
|
||||
"launch": {
|
||||
"web_url": "http://torhve.github.io/glowing-bear/"
|
||||
}
|
||||
},
|
||||
"permissions": [
|
||||
"notifications"
|
||||
],
|
||||
"web_accessible_resources": [
|
||||
"img/favicon.png"
|
||||
],
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue