ADDED icon.png Index: icon.png ================================================================== --- icon.png +++ icon.png cannot compute difference between binary files ADDED index.html Index: index.html ================================================================== --- index.html +++ index.html ADDED main.js Index: main.js ================================================================== --- main.js +++ main.js @@ -0,0 +1,15 @@ + chrome.app.runtime.onLaunched.addListener(function() { + + chrome.app.window.create('index.html', { + + "id": "test", + + "focused": true, + "innerBounds": { + "width": 350, + "minWidth": 350, + "height": 136, + "minHeight": 135 + + } + }); ADDED manifest.json Index: manifest.json ================================================================== --- manifest.json +++ manifest.json @@ -0,0 +1,28 @@ +{ + + "manifest_version": 2, + "name": "NanoBrowserWallet", + "short_name": "NBW", + "version": "0", + "description": "NBW", + + "icons": { + + "128": "icon.png" + + }, + + + + "app": { + "background": { + "scripts": [ + "main.js" + ], + + "persistent": false + } + + } + +}