Browse Source

完善桌面图标设定

tags/v6.3
枫谷剑仙 6 years ago
parent
commit
e7c19a9c23
8 changed files with 26 additions and 2 deletions
  1. BIN
      images/desktop-icon/144.png
  2. BIN
      images/desktop-icon/168.png
  3. BIN
      images/desktop-icon/192.png
  4. BIN
      images/desktop-icon/360.png
  5. BIN
      images/desktop-icon/48.png
  6. BIN
      images/desktop-icon/72.png
  7. BIN
      images/desktop-icon/96.png
  8. +26
    -2
      manifest.json

BIN
images/desktop-icon/144.png View File

Before After
Width: 144  |  Height: 144  |  Size: 32 kB

BIN
images/desktop-icon/168.png View File

Before After
Width: 168  |  Height: 168  |  Size: 41 kB

BIN
images/desktop-icon/192.png View File

Before After
Width: 192  |  Height: 192  |  Size: 52 kB

BIN
images/desktop-icon/360.png View File

Before After
Width: 360  |  Height: 360  |  Size: 141 kB

BIN
images/desktop-icon/48.png View File

Before After
Width: 48  |  Height: 48  |  Size: 4.9 kB

BIN
images/desktop-icon/72.png View File

Before After
Width: 72  |  Height: 72  |  Size: 9.7 kB

BIN
images/desktop-icon/96.png View File

Before After
Width: 96  |  Height: 96  |  Size: 16 kB

+ 26
- 2
manifest.json View File

@@ -2,13 +2,37 @@
"name": "P&D Dash Formation",
"short_name": "P&D-DF",
"start_url": "./index.html",
"display": "standalone",
"display": "minimal-ui",
"background_color": "#52351E",
"description": "Puzzle & Dragons Formation Image Maker.",
"icons": [{
"src": "images/icon.png",
"src": "./images/desktop-icon/48.png",
"sizes": "48x48",
"type": "image/png"
} , {
"src": "./images/desktop-icon/72.png",
"sizes": "72x72",
"type": "image/png"
} , {
"src": "./images/desktop-icon/96.png",
"sizes": "96x96",
"type": "image/png"
} , {
"src": "./images/desktop-icon/144.png",
"sizes": "144x144",
"type": "image/png"
} , {
"src": "./images/desktop-icon/168.png",
"sizes": "168x168",
"type": "image/png"
} , {
"src": "./images/desktop-icon/192.png",
"sizes": "192x192",
"type": "image/png"
} , {
"src": "./images/desktop-icon/360.png",
"sizes": "360x360",
"type": "image/png"
}],
"related_applications": [{
"platform": "web"


Loading…
Cancel
Save