Nano Chrome Extension

Check-in [49341cc45a]
Login
Overview
Comment:Starting the app
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | trunk
Files: files | file ages | folders
SHA1: 49341cc45aa56481f2d75e36c1016c34a383bd0b
User & Date: Troy on 2018-09-10 14:33:52
Other Links: manifest | tags
Context
2018-09-10
14:33
Starting the app Leaf check-in: 49341cc45a user: Troy tags: trunk
14:32
initial empty check-in check-in: c544c4ce73 user: Troy tags: trunk
Changes

Added icon.png version [1d8967dad7].

cannot compute difference between binary files

Added index.html version [da39a3ee5e].

Added main.js version [caf76771c1].































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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 version [c8cc9c6b9f].

























































>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{

	"manifest_version": 2,
	"name": "NanoBrowserWallet",
	"short_name": "NBW",
	"version": "0",
	"description": "NBW",
	
	"icons": {

		"128": "icon.png"

	},



	"app": {
		"background": {
			"scripts": [
				"main.js"
			],
                       
			"persistent": false
		}

	}

}