Advertisement
some_kid

manifest.json

Jul 23rd, 2014
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. {
  2.     "manifest_version":1,
  3.     "type":"WebApp",
  4.     "meta":{
  5.         "name":"Demo App",
  6.         "version":"1.0.0",
  7.         "minimum-overwolf-version":"0.77.10",
  8.         "author":"Developer Name",
  9.         "icon":"IconMouseOver.png",
  10.         "icon_gray":"IconMouseNormal.png",
  11.         "description":"Demo App"
  12.     },
  13.     "data": {
  14.         "start_window":"MainWindow",
  15.         "windows":{
  16.             "MainWindow":{
  17.                     "file":"Files/index.html",
  18.                     "transparent":true,
  19.                     "resizable":true,
  20.                     "size":{"width":400, "height":300},
  21.                     "min_size":{"width":200, "height":200},
  22.                     "max_size":{"width":600, "height":500}
  23.                 },
  24.             "SubWindow":{
  25.                     "file":"Files/subwindow.html",
  26.                     "transparent":true,
  27.                     "resizable":false,
  28.                     "size":{"width":400, "height":300},
  29.                     "in_game_only":true
  30.                 }
  31.         },
  32.         "hotkeys" : {
  33.             "my_cool_action": {
  34.                 "title": "My Cool Action",
  35.                 "action-type": "custom",
  36.                 "default": "Ctrl+Alt+C"
  37.             }
  38.         }
  39.     }
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement