diff --git a/browserconfig.xml b/browserconfig.xml new file mode 100644 index 0000000..0039362 --- /dev/null +++ b/browserconfig.xml @@ -0,0 +1,11 @@ + + + + + + + + #ffc40d + + + diff --git a/manifest.json b/manifest.json index 0d561e7..e376e87 100644 --- a/manifest.json +++ b/manifest.json @@ -1,18 +1,34 @@ { - "manifest_version": 2, - "name": "Interval Timer", - "version": "1.0", - "description": "A customizable interval timer", - "author": "William Brawner", "app": { "background": { "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": { + "name": "William Brawner", + "url": "https://wbrawner.com" }, - "offline_enabled": true -} \ No newline at end of file + "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", +} diff --git a/manifest.webapp b/manifest.webapp index e6c447b..e376e87 100644 --- a/manifest.webapp +++ b/manifest.webapp @@ -1,17 +1,34 @@ { - "name": "Interval Timer", - "description": "An interval timer that allows you to customize the intervals", - "launch_path": "/index.html", - "icons": { - "512": "/images/icon-512.png", - "128": "/images/icon-128.png", - "60": "/images/icon-60.png" + "app": { + "background": { + "scripts": ["js/start.js"] + } }, + "author": "William Brawner", + "chrome": { "navigation": false } + "default_locale": "en", + "description": "An interval timer that allows you to customize the intervals", + "display": "standalone", "developer": { "name": "William Brawner", - "url": "http://wbrawner.com" + "url": "https://wbrawner.com" }, - "version": "1.2", - "default_locale": "en", - "chrome": { "navigation": false } -} \ No newline at end of file + "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", +}