Updated/added manifests for android/windows

This commit is contained in:
William Brawner 2016-09-17 19:33:19 +00:00
parent 1ca6dc22c1
commit 7ee0ff7da0
3 changed files with 67 additions and 23 deletions

11
browserconfig.xml Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square70x70logo src="/mstile-70x70.png"/>
<square150x150logo src="/mstile-150x150.png"/>
<square310x310logo src="/mstile-310x310.png"/>
<TileColor>#ffc40d</TileColor>
</tile>
</msapplication>
</browserconfig>

View file

@ -1,18 +1,34 @@
{ {
"manifest_version": 2,
"name": "Interval Timer",
"version": "1.0",
"description": "A customizable interval timer",
"author": "William Brawner",
"app": { "app": {
"background": { "background": {
"scripts": ["js/start.js"] "scripts": ["js/start.js"]
} }
}, },
"icons": { "author": "William Brawner",
"512": "/images/icon-512.png", "chrome": { "navigation": false }
"128": "/images/icon-128.png", "default_locale": "en",
"60": "/images/icon-60.png" "description": "An interval timer that allows you to customize the intervals",
"display": "standalone",
"developer": {
"name": "William Brawner",
"url": "https://wbrawner.com"
}, },
"offline_enabled": true "icons": [
} {
"src": "/img/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image\/png"
},
{
"src": "/img/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image\/png"
}
],
"launch_path": "/index.html",
"manifest_version": 2,
"name": "Interval Timer",
"offline_enabled": true,
"theme_color": "#fff9c4",
"version": "2.0",
}

View file

@ -1,17 +1,34 @@
{ {
"name": "Interval Timer", "app": {
"description": "An interval timer that allows you to customize the intervals", "background": {
"launch_path": "/index.html", "scripts": ["js/start.js"]
"icons": { }
"512": "/images/icon-512.png",
"128": "/images/icon-128.png",
"60": "/images/icon-60.png"
}, },
"author": "William Brawner",
"chrome": { "navigation": false }
"default_locale": "en",
"description": "An interval timer that allows you to customize the intervals",
"display": "standalone",
"developer": { "developer": {
"name": "William Brawner", "name": "William Brawner",
"url": "http://wbrawner.com" "url": "https://wbrawner.com"
}, },
"version": "1.2", "icons": [
"default_locale": "en", {
"chrome": { "navigation": false } "src": "/img/android-chrome-192x192.png",
} "sizes": "192x192",
"type": "image\/png"
},
{
"src": "/img/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image\/png"
}
],
"launch_path": "/index.html",
"manifest_version": 2,
"name": "Interval Timer",
"offline_enabled": true,
"theme_color": "#fff9c4",
"version": "2.0",
}