Browse Source
chrome app files are good enough for basic setup. JS and html code still needs fixing to support chrome app. It’s buggy to this commit height.master
Satinder Grewal
9 years ago
5 changed files with 38 additions and 4 deletions
@ -0,0 +1,11 @@ |
|||||
|
/** |
||||
|
* Listens for the app launching then creates the window |
||||
|
* |
||||
|
* @see http://developer.chrome.com/apps/app.window.html
|
||||
|
*/ |
||||
|
chrome.app.runtime.onLaunched.addListener(function() { |
||||
|
chrome.app.window.create('index.html', { |
||||
|
id: 'main', |
||||
|
bounds: { width: 1200, height: 800 } |
||||
|
}); |
||||
|
}); |
After Width: | Height: | Size: 11 KiB |
@ -0,0 +1,19 @@ |
|||||
|
{ |
||||
|
"name": "EasyDEX App", |
||||
|
"short_name": "EasyDEX", |
||||
|
"description": "EasyDEX - Decentralized Crypto Currency Exchange App", |
||||
|
"version": "0.0.2", |
||||
|
"manifest_version": 2, |
||||
|
"icons": { |
||||
|
"128": "icon_128.png" |
||||
|
}, |
||||
|
"author": "jl777, Satinder Grewal", |
||||
|
"app": { |
||||
|
"background": { |
||||
|
"scripts": ["background.js"] |
||||
|
} |
||||
|
}, |
||||
|
"permissions": [ |
||||
|
"storage" |
||||
|
] |
||||
|
} |
Loading…
Reference in new issue