Skip to content

Instantly share code, notes, and snippets.

@eransharv
Created May 1, 2019 23:22
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eransharv/e74024e0b31d5e0525b5289b8b8b6ffc to your computer and use it in GitHub Desktop.
Save eransharv/e74024e0b31d5e0525b5289b8b8b6ffc to your computer and use it in GitHub Desktop.
Here is the base version of the Overwolf manifest.json file:
{
"manifest_version": 1,
"type": "WebApp",
"meta": {
"name": "Demo_App",
"version": "1.0.0",
"author": "Developer_Name",
"icon": "IconMouseOver.png",
"icon_gray": "IconMouseNormal.png",
"description": "Demo App"
},
"data": {
"start_window": "MainWindow",
"windows": {
"MainWindow": {
"file": "Files/index.html",
"transparent": true,
"resizable": true,
"size": {"width": 400, "height": 300},
"min_size": {"width": 200, "height": 200},
"max_size": {"width": 600, "height": 500}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment